Symbol: sctp_sndinfo
crypto/openssl/crypto/bio/bss_dgram.c
2208
char cmsgbuf[CMSG_SPACE(sizeof(struct sctp_sndinfo)) + CMSG_SPACE(sizeof(struct sctp_prinfo))];
crypto/openssl/crypto/bio/bss_dgram.c
2209
struct sctp_sndinfo *sndinfo;
crypto/openssl/crypto/bio/bss_dgram.c
2255
cmsg->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndinfo));
crypto/openssl/crypto/bio/bss_dgram.c
2256
sndinfo = (struct sctp_sndinfo *)CMSG_DATA(cmsg);
crypto/openssl/crypto/bio/bss_dgram.c
2262
msg.msg_controllen += CMSG_SPACE(sizeof(struct sctp_sndinfo));
crypto/openssl/crypto/bio/bss_dgram.c
2264
cmsg = (struct cmsghdr *)&cmsgbuf[CMSG_SPACE(sizeof(struct sctp_sndinfo))];
lib/libc/net/sctp_sys_calls.c
1016
if ((info == NULL) || (infolen < sizeof(struct sctp_sndinfo))) {
lib/libc/net/sctp_sys_calls.c
1023
cmsg->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndinfo));
lib/libc/net/sctp_sys_calls.c
1024
memcpy(CMSG_DATA(cmsg), info, sizeof(struct sctp_sndinfo));
lib/libc/net/sctp_sys_calls.c
1025
msg.msg_controllen += CMSG_SPACE(sizeof(struct sctp_sndinfo));
lib/libc/net/sctp_sys_calls.c
1026
cmsg = (struct cmsghdr *)((caddr_t)cmsg + CMSG_SPACE(sizeof(struct sctp_sndinfo)));
lib/libc/net/sctp_sys_calls.c
1027
assoc_id = &(((struct sctp_sndinfo *)info)->snd_assoc_id);
lib/libc/net/sctp_sys_calls.c
1065
cmsg->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndinfo));
lib/libc/net/sctp_sys_calls.c
1066
memcpy(CMSG_DATA(cmsg), &spa_info->sendv_sndinfo, sizeof(struct sctp_sndinfo));
lib/libc/net/sctp_sys_calls.c
1067
msg.msg_controllen += CMSG_SPACE(sizeof(struct sctp_sndinfo));
lib/libc/net/sctp_sys_calls.c
1068
cmsg = (struct cmsghdr *)((caddr_t)cmsg + CMSG_SPACE(sizeof(struct sctp_sndinfo)));
lib/libc/net/sctp_sys_calls.c
333
((struct sctp_sndinfo *)arg)->snd_assoc_id = id;
lib/libc/net/sctp_sys_calls.c
995
cmsgbuf = malloc(CMSG_SPACE(sizeof(struct sctp_sndinfo)) +
sys/netinet/sctp_output.c
3456
struct sctp_sndinfo sndinfo;
sys/netinet/sctp_output.c
3513
if (cmsg_data_len < (int)sizeof(struct sctp_sndinfo)) {
sys/netinet/sctp_output.c
3516
m_copydata(control, cmsg_data_off, sizeof(struct sctp_sndinfo), (caddr_t)&sndinfo);
sys/netinet/sctp_uio.h
220
struct sctp_sndinfo sendv_sndinfo;
sys/netinet/sctp_uio.h
379
struct sctp_sndinfo ssfe_info;
sys/netinet/sctp_usrreq.c
3096
struct sctp_sndinfo *info;
sys/netinet/sctp_usrreq.c
3098
SCTP_CHECK_AND_CAST(info, optval, struct sctp_sndinfo, *optsize);
sys/netinet/sctp_usrreq.c
3126
*optsize = sizeof(struct sctp_sndinfo);
sys/netinet/sctp_usrreq.c
6184
struct sctp_sndinfo *info;
sys/netinet/sctp_usrreq.c
6187
SCTP_CHECK_AND_CAST(info, optval, struct sctp_sndinfo, optsize);
usr.bin/truss/syscalls.c
1313
print_sctp_sndinfo(FILE *fp, struct sctp_sndinfo *info)
usr.bin/truss/syscalls.c
1420
if (len == CMSG_LEN(sizeof(struct sctp_sndinfo)))
usr.bin/truss/syscalls.c
1421
print_sctp_sndinfo(fp, (struct sctp_sndinfo *)data);