Searched refs:cmsgp (Results 1 – 3 of 3) sorted by relevance
116 struct cmsghdr *cmsgp; in main() local313 cmsgp = CMSG_FIRSTHDR(&msg); in main()314 cmsgp->cmsg_len = CMSG_LEN(sizeof(struct in_addr)); in main()315 cmsgp->cmsg_level = IPPROTO_IP; in main()316 cmsgp->cmsg_type = IP_SENDSRCADDR; in main()317 srcaddrp = (struct in_addr *)CMSG_DATA(cmsgp); in main()324 cmsgp = CMSG_FIRSTHDR(&msg); in main()325 cmsgp->cmsg_len = CMSG_LEN(sizeof(struct sockaddr_dl)); in main()326 cmsgp->cmsg_level = IPPROTO_IP; in main()327 cmsgp->cmsg_type = IP_SENDIF; in main()[all …]
209 struct cmsghdr *cmsgp; in make_msg() local263 cmsgp = (struct cmsghdr *)cmsgbuf; in make_msg()267 cmsgp->cmsg_len = CMSG_LEN(sizeof(struct in6_pktinfo)); in make_msg()268 cmsgp->cmsg_level = IPPROTO_IPV6; in make_msg()269 cmsgp->cmsg_type = IPV6_PKTINFO; in make_msg()270 pi = (struct in6_pktinfo *)CMSG_DATA(cmsgp); in make_msg()274 cmsgp = CMSG_NXTHDR(&m, cmsgp); in make_msg()275 cmsgp->cmsg_len = CMSG_LEN(hbhlen); in make_msg()276 cmsgp->cmsg_level = IPPROTO_IPV6; in make_msg()277 cmsgp->cmsg_type = IPV6_HOPOPTS; in make_msg()[all …]
83 inet6_option_init(void *bp, struct cmsghdr **cmsgp, int type) in inet6_option_init() argument95 *cmsgp = ch; in inet6_option_init()