Lines Matching refs:msghdr
84 struct msghdr msghdr; in chgpw_send_request() local
125 memset(&msghdr, 0, sizeof(msghdr)); in chgpw_send_request()
126 msghdr.msg_name = NULL; in chgpw_send_request()
127 msghdr.msg_namelen = 0; in chgpw_send_request()
128 msghdr.msg_iov = iov; in chgpw_send_request()
129 msghdr.msg_iovlen = sizeof(iov)/sizeof(*iov); in chgpw_send_request()
131 msghdr.msg_control = NULL; in chgpw_send_request()
132 msghdr.msg_controllen = 0; in chgpw_send_request()
142 if (rk_IS_SOCKET_ERROR( sendmsg (sock, &msghdr, 0) )) { in chgpw_send_request()
178 struct msghdr msghdr; in setpw_send_request() local
232 memset(&msghdr, 0, sizeof(msghdr)); in setpw_send_request()
233 msghdr.msg_name = NULL; in setpw_send_request()
234 msghdr.msg_namelen = 0; in setpw_send_request()
235 msghdr.msg_iov = iov; in setpw_send_request()
236 msghdr.msg_iovlen = sizeof(iov)/sizeof(*iov); in setpw_send_request()
238 msghdr.msg_control = NULL; in setpw_send_request()
239 msghdr.msg_controllen = 0; in setpw_send_request()
252 if (rk_IS_SOCKET_ERROR( sendmsg (sock, &msghdr, 0) )) { in setpw_send_request()