Home
last modified time | relevance | path

Searched refs:sctp_sndrcvinfo (Results 1 – 17 of 17) sorted by relevance

/freebsd/lib/libc/net/
H A Dsctp_sys_calls.c518 struct sctp_sndrcvinfo sinfo; in sctp_sendmsg()
520 memset(&sinfo, 0, sizeof(struct sctp_sndrcvinfo)); in sctp_sendmsg()
531 struct sctp_sndrcvinfo *sinfo; in sctp_sendmsg()
533 char cmsgbuf[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))]; in sctp_sendmsg()
594 msg.msg_controllen = CMSG_SPACE(sizeof(struct sctp_sndrcvinfo)); in sctp_sendmsg()
599 cmsg->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndrcvinfo)); in sctp_sendmsg()
600 sinfo = (struct sctp_sndrcvinfo *)CMSG_DATA(cmsg); in sctp_sendmsg()
601 memset(sinfo, 0, sizeof(struct sctp_sndrcvinfo)); in sctp_sendmsg()
634 const struct sctp_sndrcvinfo *sinfo, in sctp_send()
646 char cmsgbuf[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))]; in sctp_send()
[all …]
/freebsd/sys/netinet/
H A Dsctp_syscalls.c210 struct sctp_sndrcvinfo sinfo, *u_sinfo = NULL; in sys_sctp_generic_sendmsg()
310 struct sctp_sndrcvinfo sinfo, *u_sinfo = NULL; in sys_sctp_generic_sendmsg_iov()
430 struct sctp_sndrcvinfo sinfo; in sys_sctp_generic_recvmsg()
502 memset(&sinfo, 0, sizeof(struct sctp_sndrcvinfo)); in sys_sctp_generic_recvmsg()
506 (struct sctp_sndrcvinfo *)&sinfo, 1); in sys_sctp_generic_recvmsg()
H A Dsctp_uio.h113 struct sctp_sndrcvinfo { struct
368 struct sctp_sndrcvinfo ssf_info;
1270 struct sctp_sndrcvinfo *srcv
1281 struct sctp_sndrcvinfo *sinfo,
1309 const struct sctp_sndrcvinfo *, int);
1314 int, struct sctp_sndrcvinfo *, int);
1326 struct sctp_sndrcvinfo *, int *);
H A Dsctp_indata.h75 struct sctp_sndrcvinfo *sinfo);
H A Dsctp_indata.c169 sctp_build_ctl_nchunk(struct sctp_inpcb *inp, struct sctp_sndrcvinfo *sinfo) in sctp_build_ctl_nchunk()
172 struct sctp_sndrcvinfo *outinfo; in sctp_build_ctl_nchunk()
206 len += CMSG_SPACE(sizeof(struct sctp_sndrcvinfo)); in sctp_build_ctl_nchunk()
266 outinfo = (struct sctp_sndrcvinfo *)CMSG_DATA(cmh); in sctp_build_ctl_nchunk()
273 cmh->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndrcvinfo)); in sctp_build_ctl_nchunk()
276 SCTP_BUF_LEN(ret) += CMSG_SPACE(sizeof(struct sctp_sndrcvinfo)); in sctp_build_ctl_nchunk()
H A Dsctp_usrreq.c2759 struct sctp_sndrcvinfo *s_info;
2761 SCTP_CHECK_AND_CAST(s_info, optval, struct sctp_sndrcvinfo, *optsize);
2781 *optsize = sizeof(struct sctp_sndrcvinfo);
5164 struct sctp_sndrcvinfo *s_info;
5166 SCTP_CHECK_AND_CAST(s_info, optval, struct sctp_sndrcvinfo, optsize);
H A Dsctp_output.c3502 struct sctp_sndrcvinfo *sndrcvinfo; in sctp_find_cmsg()
3504 sndrcvinfo = (struct sctp_sndrcvinfo *)data; in sctp_find_cmsg()
3506 if (cpsize < sizeof(struct sctp_sndrcvinfo)) { in sctp_find_cmsg()
3509 memset(sndrcvinfo, 0, sizeof(struct sctp_sndrcvinfo)); in sctp_find_cmsg()
12520 struct sctp_sndrcvinfo sndrcvninfo; in sctp_sosend()
12567 struct sctp_sndrcvinfo *srcv, in sctp_lower_sosend()
H A Dsctputil.c5518 struct sctp_sndrcvinfo *sinfo, in sctp_sorecvmsg()
6588 (struct sctp_sndrcvinfo *)&sinfo, filling_sinfo); in sctp_soreceive()
6596 (struct sctp_sndrcvinfo *)&sinfo); in sctp_soreceive()
/freebsd/crypto/openssl/crypto/bio/
H A Dbss_dgram.c1041 struct sctp_sndrcvinfo *sndrcvinfo; in dgram_sctp_read()
1044 (struct sctp_sndrcvinfo *)CMSG_DATA(cmsg); in dgram_sctp_read()
1234 char cmsgbuf[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))]; in dgram_sctp_write()
1235 struct sctp_sndrcvinfo *sndrcvinfo; in dgram_sctp_write()
1300 cmsg->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndrcvinfo)); in dgram_sctp_write()
1301 sndrcvinfo = (struct sctp_sndrcvinfo *)CMSG_DATA(cmsg); in dgram_sctp_write()
1311 msg.msg_controllen += CMSG_SPACE(sizeof(struct sctp_sndrcvinfo)); in dgram_sctp_write()
/freebsd/lib/libsys/
H A D_libsys.h47 struct sctp_sndrcvinfo;
357 …_sendmsg_t)(int, void *, int, const struct sockaddr *, __socklen_t, struct sctp_sndrcvinfo *, int);
358 …_t)(int, struct iovec *, int, const struct sockaddr *, __socklen_t, struct sctp_sndrcvinfo *, int);
359 …sg_t)(int, struct iovec *, int, struct sockaddr *, __socklen_t *, struct sctp_sndrcvinfo *, int *);
758 …msg, int mlen, const struct sockaddr * to, __socklen_t tolen, struct sctp_sndrcvinfo * sinfo, int …
759 …v, int iovlen, const struct sockaddr * to, __socklen_t tolen, struct sctp_sndrcvinfo * sinfo, int …
760 …nt iovlen, struct sockaddr * from, __socklen_t * fromlenaddr, struct sctp_sndrcvinfo * sinfo, int …
/freebsd/tools/test/stress2/misc/
H A Dsctp3.sh43 struct sctp_sndrcvinfo sndrcvinfo;
H A Dsctp.sh35 struct sctp_sndrcvinfo sndrcvinfo;
H A Dsctp2.sh46 struct sctp_sndrcvinfo sndrcvinfo;
/freebsd/tests/sys/netpfil/pf/
H A Dsctp.py45 class sctp_sndrcvinfo(ctypes.Structure): class
127 rcvinfo = sctp_sndrcvinfo()
/freebsd/contrib/capsicum-test/
H A Dsctp.cc158 struct sctp_sndrcvinfo sri; in TEST()
/freebsd/sys/sys/
H A Dsysproto.h1312 …char sinfo_l_[PADL_(struct sctp_sndrcvinfo *)]; struct sctp_sndrcvinfo * sinfo; char sinfo_r_[PADR…
1321 …char sinfo_l_[PADL_(struct sctp_sndrcvinfo *)]; struct sctp_sndrcvinfo * sinfo; char sinfo_r_[PADR…
1330 …char sinfo_l_[PADL_(struct sctp_sndrcvinfo *)]; struct sctp_sndrcvinfo * sinfo; char sinfo_r_[PADR…
/freebsd/usr.bin/truss/
H A Dsyscalls.c1289 print_sctp_sndrcvinfo(FILE *fp, bool receive, struct sctp_sndrcvinfo *info) in print_sctp_sndrcvinfo()
1401 if (len == CMSG_LEN(sizeof(struct sctp_sndrcvinfo))) in print_sctp_cmsg()
1403 (struct sctp_sndrcvinfo *)data); in print_sctp_cmsg()
2683 struct sctp_sndrcvinfo info; in print_arg()
2686 &info, sizeof(struct sctp_sndrcvinfo)) == -1) { in print_arg()