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