aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/threads/sender.h
diff options
context:
space:
mode:
authorJan Hutter <jhutter@hsr.ch>2005-12-06 16:04:39 +0000
committerJan Hutter <jhutter@hsr.ch>2005-12-06 16:04:39 +0000
commitf1046648362e045781ad7eee6f821d0675178b80 (patch)
tree89d5e55a82da7660ead538148cd10cd786680d9f /Source/charon/threads/sender.h
parent2b547481315c3b641b716023858efdbb2c3e422a (diff)
downloadstrongswan-f1046648362e045781ad7eee6f821d0675178b80.tar.bz2
strongswan-f1046648362e045781ad7eee6f821d0675178b80.tar.xz
- code cleaned up
Diffstat (limited to 'Source/charon/threads/sender.h')
-rw-r--r--Source/charon/threads/sender.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/Source/charon/threads/sender.h b/Source/charon/threads/sender.h
index 1192ef76e..ea8124147 100644
--- a/Source/charon/threads/sender.h
+++ b/Source/charon/threads/sender.h
@@ -28,16 +28,19 @@
typedef struct sender_t sender_t;
/**
- * @brief Sends packets over the socket.
+ * @brief Thread responsible for sending packets over the socket.
+ *
+ * @b Constructors:
+ * - sender_create()
*
* @ingroup threads
*/
struct sender_t {
/**
- * @brief Destroys a sender object
+ * @brief Destroys a sender object.
*
- * @param sender sender object
+ * @param sender calling object
*/
void (*destroy) (sender_t *sender);
};
@@ -50,7 +53,7 @@ struct sender_t {
* from the send queue and sends them out.
*
* @return
- * - created sender_t, or
+ * - sender_t object
* - NULL of thread could not be started
*
* @ingroup threads