summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2013-08-01 17:42:54 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2013-08-01 17:42:54 +0200
commitaf3ed3ca622a9fab659e01c6cdfa93d71c8bcd5a (patch)
tree484299394dc8eb2abc78b2abe218b3b8317509c7
parent80cd83c81e236260c9fa5e68cc39538f0d638ae8 (diff)
downloadgnutls-af3ed3ca622a9fab659e01c6cdfa93d71c8bcd5a.tar.gz
documented parameters
-rw-r--r--lib/gnutls_record.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/gnutls_record.c b/lib/gnutls_record.c
index 537a0d7dd0..d261585e22 100644
--- a/lib/gnutls_record.c
+++ b/lib/gnutls_record.c
@@ -422,6 +422,14 @@ sequence_increment (gnutls_session_t session,
* send (if called by the user the Content is specific)
* It is intended to transfer data, under the current session.
*
+ * @type: The content type to send
+ * @htype: If this is a handshake message then the handshake type
+ * @epoch_rel: %EPOCH_READ_* or %EPOCH_WRITE_*
+ * @data: the data to be sent
+ * @data_size: the size of the @data
+ * @target_length: @data_size + minimum required padding
+ * @mflags: zero or %MBUFFER_FLUSH
+ *
* Oct 30 2001: Removed capability to send data more than MAX_RECORD_SIZE.
* This makes the function much easier to read, and more error resistant
* (there were cases were the old function could mess everything up).