diff options
author | jbj <devnull@localhost> | 2005-02-17 02:36:37 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2005-02-17 02:36:37 +0000 |
commit | 094e57ce7127374375533093b8b60764de8359a0 (patch) | |
tree | 25a3a03dd41e2d8d25f598c3c09755e03887d682 /rpmio/rpmurl.h | |
parent | ba7be476a7db37d1051aa7cb13da98b57f4fceab (diff) | |
download | rpm-094e57ce7127374375533093b8b60764de8359a0.tar.gz rpm-094e57ce7127374375533093b8b60764de8359a0.tar.bz2 rpm-094e57ce7127374375533093b8b60764de8359a0.zip |
- rework configure.ac et al to lose internal library baggage flexibly.
CVS patchset: 7775
CVS date: 2005/02/17 02:36:37
Diffstat (limited to 'rpmio/rpmurl.h')
-rw-r--r-- | rpmio/rpmurl.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/rpmio/rpmurl.h b/rpmio/rpmurl.h index a254fb5cf..4b02a21f4 100644 --- a/rpmio/rpmurl.h +++ b/rpmio/rpmurl.h @@ -53,20 +53,20 @@ struct urlinfo_s { FD_t data; /*!< per-xfer data channel */ /*@relnull@*/ - void * capabilities; /*!< neon ne_server_capabilities ptr */ + void * capabilities; /*!< neon: ne_server_capabilities ptr */ /*@relnull@*/ - void * lockstore; /*!< neon ne_lock_store ptr */ + void * lockstore; /*!< neon: ne_lock_store ptr */ /*@relnull@*/ - void * sess; /*!< neon ne_session ptr */ - off_t current; /*!< neon current body offset. */ - off_t total; /*!< neon total body length. */ - int connstatus; /*!< neon connection status. */ + void * sess; /*!< neon: ne_session ptr */ + off_t current; /*!< neon: current body offset. */ + off_t total; /*!< neon: total body length. */ + int connstatus; /*!< neon: connection status. */ #ifdef REFERENCE typedef enum { - ne_conn_namelookup, /* lookup up hostname (info = hostname) */ - ne_conn_connecting, /* connecting to host (info = hostname) */ - ne_conn_connected, /* connected to host (info = hostname) */ - ne_conn_secure /* connection now secure (info = crypto level) */ + ne_conn_namelookup, /* lookup up hostname (info = hostname) */ + ne_conn_connecting, /* connecting to host (info = hostname) */ + ne_conn_connected, /* connected to host (info = hostname) */ + ne_conn_secure /* connection now secure (info = crypto level) */ } ne_conn_status; #endif |