.\" DO NOT MODIFY THIS FILE! It was generated by gdoc. .TH "gnutls_record_send" 3 "3.1.11" "gnutls" "gnutls" .SH NAME gnutls_record_send \- API function .SH SYNOPSIS .B #include .sp .BI "ssize_t gnutls_record_send(gnutls_session_t " session ", const void * " data ", size_t " data_size ");" .SH ARGUMENTS .IP "gnutls_session_t session" 12 is a \fBgnutls_session_t\fP structure. .IP "const void * data" 12 contains the data to send .IP "size_t data_size" 12 is the length of the data .SH "DESCRIPTION" This function has the similar semantics with \fBsend()\fP. The only difference is that it accepts a GnuTLS session, and uses different error codes. Note that if the send buffer is full, \fBsend()\fP will block this function. See the \fBsend()\fP documentation for full information. You can replace the default push function by using \fBgnutls_transport_set_ptr2()\fP with a call to \fBsend()\fP with a MSG_DONTWAIT flag if blocking is a problem. If the EINTR is returned by the internal push function (the default is \fBsend()\fP) then \fBGNUTLS_E_INTERRUPTED\fP will be returned. If \fBGNUTLS_E_INTERRUPTED\fP or \fBGNUTLS_E_AGAIN\fP is returned, you must call this function again, with the same parameters; alternatively you could provide a \fBNULL\fP pointer for data, and 0 for size. cf. \fBgnutls_record_get_direction()\fP. The errno value EMSGSIZE maps to \fBGNUTLS_E_LARGE_PACKET\fP. .SH "RETURNS" The number of bytes sent, or a negative error code. The number of bytes sent might be less than \fIdata_size\fP . The maximum number of bytes this function can send in a single call depends on the negotiated maximum record size. .SH "REPORTING BUGS" Report bugs to . .br General guidelines for reporting bugs: http://www.gnu.org/gethelp/ .br GnuTLS home page: http://www.gnu.org/software/gnutls/ .SH COPYRIGHT Copyright \(co 2012 Free Software Foundation, Inc.. .br Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. .SH "SEE ALSO" The full documentation for .B gnutls is maintained as a Texinfo manual. If the .B info and .B gnutls programs are properly installed at your site, the command .IP .B info gnutls .PP should give you access to the complete manual. As an alternative you may obtain the manual from: .IP .B http://www.gnu.org/software/gnutls/manual/ .PP