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