Lines Matching refs:msgh
116 struct msghdr msgh;
125 memset(&msgh, 0, sizeof(msgh));
126 msgh.msg_name = NULL;
127 msgh.msg_namelen = 0;
131 msgh.msg_iov = iov;
132 msgh.msg_iovlen = 1;
135 msgh.msg_control = NULL;
136 msgh.msg_controllen = 0;
140 msgh.msg_control = control;
141 msgh.msg_controllen = sizeof(control);
142 cmsghp = CMSG_FIRSTHDR(&msgh);
156 return sendmsg(fd, &(msgh), 0);
176 struct msghdr msgh;
188 memset(&msgh, 0, sizeof(msgh));
189 msgh.msg_name = NULL;
190 msgh.msg_namelen = 0;
191 msgh.msg_control = control;
192 msgh.msg_controllen = sizeof(control);
196 msgh.msg_iov = iov;
197 msgh.msg_iovlen = 1;
199 if ( (rcvd_len = recvmsg(fd, &(msgh), 0)) <= 0) {
204 CDBG("%s: msg_ctrl %p len %d", __func__, msgh.msg_control, msgh.msg_controllen);
206 if( ((cmsghp = CMSG_FIRSTHDR(&msgh)) != NULL) &&