Lines Matching +full:reserved +full:- +full:endpoints
4 * All rights reserved.
47 struct iovec *iov = msg->msg_iov; in sendmsg()
49 for(i = 0; i < msg->msg_iovlen; ++i) in sendmsg()
54 return -1; in sendmsg()
57 for (i = 0; i < msg->msg_iovlen; ++i) { in sendmsg()
61 ret = sendto (s, buf, tot, flags, msg->msg_name, msg->msg_namelen); in sendmsg()
69 * Copyright (c) 2009, Secure Endpoints Inc.
70 * All rights reserved.
76 * - Redistributions of source code must retain the above copyright
79 * - Redistributions in binary form must reproduce the above copyright
84 * - Neither the name of Secure Endpoints Inc. nor the names of its
114 * - msg->msg_name is ignored. So is msg->control.
115 * - WSASend() only supports ::MSG_DONTROUTE, ::MSG_OOB and
123 * @return The number of bytes sent, on success. Or -1 on error.
134 srv = WSASend(s, msg->msg_iov, msg->msg_iovlen, in sendmsg_w32()
141 indicates that a non-blocking transfer has been scheduled. in sendmsg_w32()
142 We'll have to check for that if we ever support non-blocking in sendmsg_w32()
145 return -1; in sendmsg_w32()