diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-12-06 16:36:42 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-12-06 16:36:42 +0000 |
commit | 3febcf15f0cba8b17ab3bdb67c3d0864ef61080c (patch) | |
tree | 7fa7873bf72bea54654883fe00663e83cbac1d83 /Source/charon/threads/receiver.h | |
parent | f1046648362e045781ad7eee6f821d0675178b80 (diff) | |
download | strongswan-3febcf15f0cba8b17ab3bdb67c3d0864ef61080c.tar.bz2 strongswan-3febcf15f0cba8b17ab3bdb67c3d0864ef61080c.tar.xz |
- code cleaned up
Diffstat (limited to 'Source/charon/threads/receiver.h')
-rw-r--r-- | Source/charon/threads/receiver.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/charon/threads/receiver.h b/Source/charon/threads/receiver.h index 415ea5191..932774f5f 100644 --- a/Source/charon/threads/receiver.h +++ b/Source/charon/threads/receiver.h @@ -35,12 +35,15 @@ typedef struct receiver_t receiver_t; * data is available, a packet_t object is created , wrapped * in an incoming_packet_job_t and added to the job queue. * + * @b Constructors: + * - receiver_create() + * * @ingroup threads */ struct receiver_t { /** - * @brief Destroys a receiver_t + * @brief Destroys a receiver_t object. * * @param receiver receiver object */ @@ -48,13 +51,13 @@ struct receiver_t { }; /** - * @brief Create a receiver. + * @brief Create a receiver_t object. * * The receiver thread will start working, get data * from the socket and add those packets to the job queue. * * @return - * - created receiver_t, or + * - receiver_t object * - NULL of thread could not be started * * @ingroup threads |