sctp_send.3 (1a0fda2b547365c9453523592a445dfe21266d4b) | sctp_send.3 (3d36ac98772ff4b4ad29e7457cb6e14231e4d426) |
---|---|
1.\" Copyright (c) 1983, 1991, 1993 2.\" The Regents of the University of California. All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. --- 80 unchanged lines hidden (view full) --- 89send more data on one-to-one type (SOCK_STREAM) sockets. 90.Pp 91The 92.Fa sinfo 93structure is used to control various SCTP features 94and has the following format: 95.Bd -literal 96struct sctp_sndrcvinfo { | 1.\" Copyright (c) 1983, 1991, 1993 2.\" The Regents of the University of California. All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. --- 80 unchanged lines hidden (view full) --- 89send more data on one-to-one type (SOCK_STREAM) sockets. 90.Pp 91The 92.Fa sinfo 93structure is used to control various SCTP features 94and has the following format: 95.Bd -literal 96struct sctp_sndrcvinfo { |
97 u_int16_t sinfo_stream; /* Stream sending to */ 98 u_int16_t sinfo_ssn; /* valid for recv only */ 99 u_int16_t sinfo_flags; /* flags to control sending */ 100 u_int32_t sinfo_ppid; /* ppid field */ 101 u_int32_t sinfo_context; /* context field */ 102 u_int32_t sinfo_timetolive; /* timetolive for PR-SCTP */ 103 u_int32_t sinfo_tsn; /* valid for recv only */ 104 u_int32_t sinfo_cumtsn; /* valid for recv only */ | 97 uint16_t sinfo_stream; /* Stream sending to */ 98 uint16_t sinfo_ssn; /* valid for recv only */ 99 uint16_t sinfo_flags; /* flags to control sending */ 100 uint32_t sinfo_ppid; /* ppid field */ 101 uint32_t sinfo_context; /* context field */ 102 uint32_t sinfo_timetolive; /* timetolive for PR-SCTP */ 103 uint32_t sinfo_tsn; /* valid for recv only */ 104 uint32_t sinfo_cumtsn; /* valid for recv only */ |
105 sctp_assoc_t sinfo_assoc_id; /* The association id */ 106}; 107.Ed 108.Pp 109The 110.Fa sinfo->sinfo_ppid 111argument is an opaque 32 bit value that is passed transparently 112through the stack to the peer endpoint. It will be available on --- 242 unchanged lines hidden --- | 105 sctp_assoc_t sinfo_assoc_id; /* The association id */ 106}; 107.Ed 108.Pp 109The 110.Fa sinfo->sinfo_ppid 111argument is an opaque 32 bit value that is passed transparently 112through the stack to the peer endpoint. It will be available on --- 242 unchanged lines hidden --- |