summaryrefslogtreecommitdiff
path: root/lib/tsocket/tsocket_helpers.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@redhat.com>2009-12-16 13:26:48 +0100
committerStefan Metzmacher <metze@samba.org>2010-01-11 11:22:59 +0100
commit574f77f89e78997844dd6e993f9bf53476555026 (patch)
treeb7465c0e87ac6be5b7f1eb8f5a3ad6fb83ebf6ad /lib/tsocket/tsocket_helpers.c
parentc32b0b6b0249e9f636667b779096b80c97038515 (diff)
downloadsamba-574f77f89e78997844dd6e993f9bf53476555026.tar.gz
samba-574f77f89e78997844dd6e993f9bf53476555026.tar.bz2
samba-574f77f89e78997844dd6e993f9bf53476555026.zip
tsocket: Added complete doxygen documentation.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'lib/tsocket/tsocket_helpers.c')
-rw-r--r--lib/tsocket/tsocket_helpers.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/lib/tsocket/tsocket_helpers.c b/lib/tsocket/tsocket_helpers.c
index d8db864058..3a41a3efc3 100644
--- a/lib/tsocket/tsocket_helpers.c
+++ b/lib/tsocket/tsocket_helpers.c
@@ -42,24 +42,6 @@ static void tdgram_sendto_queue_trigger(struct tevent_req *req,
void *private_data);
static void tdgram_sendto_queue_done(struct tevent_req *subreq);
-/**
- * @brief Queue a dgram blob for sending through the socket
- * @param[in] mem_ctx The memory context for the result
- * @param[in] ev The event context the operation should work on
- * @param[in] dgram The tdgram_context to send the message buffer
- * @param[in] queue The existing dgram queue
- * @param[in] buf The message buffer
- * @param[in] len The message length
- * @param[in] dst The destination socket address
- * @retval The async request handle
- *
- * This function queues a blob for sending to destination through an existing
- * dgram socket. The async callback is triggered when the whole blob is
- * delivered to the underlying system socket.
- *
- * The caller needs to make sure that all non-scalar input parameters hang
- * arround for the whole lifetime of the request.
- */
struct tevent_req *tdgram_sendto_queue_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct tdgram_context *dgram,
@@ -335,23 +317,6 @@ static void tstream_readv_pdu_queue_trigger(struct tevent_req *req,
void *private_data);
static void tstream_readv_pdu_queue_done(struct tevent_req *subreq);
-/**
- * @brief Queue a dgram blob for sending through the socket
- * @param[in] mem_ctx The memory context for the result
- * @param[in] ev The tevent_context to run on
- * @param[in] stream The stream to send data through
- * @param[in] queue The existing send queue
- * @param[in] next_vector_fn The next vector function
- * @param[in] next_vector_private The private_data of the next vector function
- * @retval The async request handle
- *
- * This function queues a blob for sending to destination through an existing
- * dgram socket. The async callback is triggered when the whole blob is
- * delivered to the underlying system socket.
- *
- * The caller needs to make sure that all non-scalar input parameters hang
- * arround for the whole lifetime of the request.
- */
struct tevent_req *tstream_readv_pdu_queue_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct tstream_context *stream,
@@ -459,23 +424,6 @@ static void tstream_writev_queue_trigger(struct tevent_req *req,
void *private_data);
static void tstream_writev_queue_done(struct tevent_req *subreq);
-/**
- * @brief Queue a dgram blob for sending through the socket
- * @param[in] mem_ctx The memory context for the result
- * @param[in] ev The tevent_context to run on
- * @param[in] stream The stream to send data through
- * @param[in] queue The existing send queue
- * @param[in] vector The iovec vector so write
- * @param[in] count The size of the vector
- * @retval The async request handle
- *
- * This function queues a blob for sending to destination through an existing
- * dgram socket. The async callback is triggered when the whole blob is
- * delivered to the underlying system socket.
- *
- * The caller needs to make sure that all non-scalar input parameters hang
- * arround for the whole lifetime of the request.
- */
struct tevent_req *tstream_writev_queue_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct tstream_context *stream,