Home
last modified time | relevance | path

Searched refs:sctp_sndinfo (Results 1 – 6 of 6) sorted by relevance

/freebsd-14-stable/lib/libc/net/
HDsctp_sys_calls.c333 ((struct sctp_sndinfo *)arg)->snd_assoc_id = id; in sctp_opt_info()
995 cmsgbuf = malloc(CMSG_SPACE(sizeof(struct sctp_sndinfo)) + in sctp_sendv()
1016 if ((info == NULL) || (infolen < sizeof(struct sctp_sndinfo))) { in sctp_sendv()
1023 cmsg->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndinfo)); in sctp_sendv()
1024 memcpy(CMSG_DATA(cmsg), info, sizeof(struct sctp_sndinfo)); in sctp_sendv()
1025 msg.msg_controllen += CMSG_SPACE(sizeof(struct sctp_sndinfo)); in sctp_sendv()
1026 cmsg = (struct cmsghdr *)((caddr_t)cmsg + CMSG_SPACE(sizeof(struct sctp_sndinfo))); in sctp_sendv()
1027 assoc_id = &(((struct sctp_sndinfo *)info)->snd_assoc_id); in sctp_sendv()
1065 cmsg->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndinfo)); in sctp_sendv()
1066 memcpy(CMSG_DATA(cmsg), &spa_info->sendv_sndinfo, sizeof(struct sctp_sndinfo)); in sctp_sendv()
[all …]
/freebsd-14-stable/crypto/openssl/crypto/bio/
HDbss_dgram.c1229 char cmsgbuf[CMSG_SPACE(sizeof(struct sctp_sndinfo)) + in dgram_sctp_write()
1231 struct sctp_sndinfo *sndinfo; in dgram_sctp_write()
1277 cmsg->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndinfo)); in dgram_sctp_write()
1278 sndinfo = (struct sctp_sndinfo *)CMSG_DATA(cmsg); in dgram_sctp_write()
1284 msg.msg_controllen += CMSG_SPACE(sizeof(struct sctp_sndinfo)); in dgram_sctp_write()
1287 (struct cmsghdr *)&cmsgbuf[CMSG_SPACE(sizeof(struct sctp_sndinfo))]; in dgram_sctp_write()
/freebsd-14-stable/sys/netinet/
HDsctp_uio.h154 struct sctp_sndinfo { struct
220 struct sctp_sndinfo sendv_sndinfo;
379 struct sctp_sndinfo ssfe_info;
HDsctp_usrreq.c3102 struct sctp_sndinfo *info;
3104 SCTP_CHECK_AND_CAST(info, optval, struct sctp_sndinfo, *optsize);
3132 *optsize = sizeof(struct sctp_sndinfo);
6190 struct sctp_sndinfo *info;
6193 SCTP_CHECK_AND_CAST(info, optval, struct sctp_sndinfo, optsize);
HDsctp_output.c3456 struct sctp_sndinfo sndinfo; in sctp_find_cmsg()
3513 if (cmsg_data_len < (int)sizeof(struct sctp_sndinfo)) { in sctp_find_cmsg()
3516 m_copydata(control, cmsg_data_off, sizeof(struct sctp_sndinfo), (caddr_t)&sndinfo); in sctp_find_cmsg()
/freebsd-14-stable/usr.bin/truss/
HDsyscalls.c1310 print_sctp_sndinfo(FILE *fp, struct sctp_sndinfo *info) in print_sctp_sndinfo()
1417 if (len == CMSG_LEN(sizeof(struct sctp_sndinfo))) in print_sctp_cmsg()
1418 print_sctp_sndinfo(fp, (struct sctp_sndinfo *)data); in print_sctp_cmsg()