Lines Matching refs:send
69 For example, we can send an encrypted hello world record as follows:
74 send(sock, msg, strlen(msg));
76 send() data is directly encrypted from the userspace buffer provided
77 to the encrypted kernel send buffer if possible.
79 The sendfile system call will send the file's data over TLS records of maximum
88 TLS records are created and sent after each send() call, unless
93 This buffer is allocated at the time send() is called, such that
94 either the entire send() call will return -ENOMEM (or block waiting
95 for memory), or the encryption will always succeed. If send() returns
134 /* send TLS control message using record_type */
142 struct iovec msg_iov; /* Vector of data to send/receive into. */
213 of calling send directly after a handshake using gnutls.