HomeSort by: relevance | last modified time | path
    Searched refs:cmsg_space (Results 1 - 2 of 2) sorted by relevancy

  /src/external/mpl/dhcp/bind/dist/lib/isc/unix/
net.c 383 cmsg_space(socklen_t len) { function
384 #ifdef CMSG_SPACE
385 return (CMSG_SPACE(len));
386 #else /* ifdef CMSG_SPACE */
408 #endif /* ifdef CMSG_SPACE */
494 memset(cmsgp, 0, cmsg_space(sizeof(char)));
499 msg.msg_controllen += cmsg_space(sizeof(char));
504 memset(cmsgp, 0, cmsg_space(sizeof(dscp)));
509 msg.msg_controllen += cmsg_space(sizeof(dscp));
socket.c 1039 * Not all OSes support advanced CMSG macros: CMSG_LEN and CMSG_SPACE.
1042 * Note that cmsg_space() could run slow on OSes that do not have
1043 * CMSG_SPACE.
1062 cmsg_space(socklen_t len) { function
1063 #ifdef CMSG_SPACE
1064 return (CMSG_SPACE(len));
1065 #else /* ifdef CMSG_SPACE */
1087 #endif /* ifdef CMSG_SPACE */
1253 msg->msg_controllen = cmsg_space(sizeof(struct in6_pktinfo));
1272 msg->msg_controllen += cmsg_space(sizeof(use_min_mtu))
    [all...]

Completed in 32 milliseconds