1use libc::c_int;
9
10pub const SCTP_BINDX_ADD_ADDR: c_int = 0x01;
11pub const SCTP_BINDX_REM_ADDR: c_int = 0x02;
12
13pub const SCTP_RTOINFO: c_int = 0;
17pub const SCTP_ASSOCINFO: c_int = 1;
18pub const SCTP_INITMSG: c_int = 2;
19pub const SCTP_NODELAY: c_int = 3; pub const SCTP_AUTOCLOSE: c_int = 4;
21pub const SCTP_SET_PEER_PRIMARY_ADDR: c_int = 5;
22pub const SCTP_PRIMARY_ADDR: c_int = 6;
23pub const SCTP_ADAPTATION_LAYER: c_int = 7;
24pub const SCTP_DISABLE_FRAGMENTS: c_int = 8;
25pub const SCTP_PEER_ADDR_PARAMS: c_int = 9;
26pub const SCTP_DEFAULT_SEND_PARAM: c_int = 10;
27pub const SCTP_EVENTS: c_int = 11;
28pub const SCTP_I_WANT_MAPPED_V4_ADDR: c_int = 12; pub const SCTP_MAXSEG: c_int = 13; pub const SCTP_STATUS: c_int = 14;
31pub const SCTP_GET_PEER_ADDR_INFO: c_int = 15;
32pub const SCTP_DELAYED_ACK_TIME: c_int = 16;
33pub const SCTP_DELAYED_ACK: c_int = SCTP_DELAYED_ACK_TIME;
34pub const SCTP_DELAYED_SACK: c_int = SCTP_DELAYED_ACK_TIME;
35pub const SCTP_CONTEXT: c_int = 17;
36pub const SCTP_FRAGMENT_INTERLEAVE: c_int = 18;
37pub const SCTP_PARTIAL_DELIVERY_POINT: c_int = 19; pub const SCTP_MAX_BURST: c_int = 20; pub const SCTP_AUTH_CHUNK: c_int = 21; pub const SCTP_HMAC_IDENT: c_int = 22;
41pub const SCTP_AUTH_KEY: c_int = 23;
42pub const SCTP_AUTH_ACTIVE_KEY: c_int = 24;
43pub const SCTP_AUTH_DELETE_KEY: c_int = 25;
44pub const SCTP_PEER_AUTH_CHUNKS: c_int = 26; pub const SCTP_LOCAL_AUTH_CHUNKS: c_int = 27; pub const SCTP_GET_ASSOC_NUMBER: c_int = 28; pub const SCTP_GET_ASSOC_ID_LIST: c_int = 29; pub const SCTP_AUTO_ASCONF: c_int = 30;
50pub const SCTP_PEER_ADDR_THLDS: c_int = 31;
51pub const SCTP_RECVRCVINFO: c_int = 32;
52pub const SCTP_RECVNXTINFO: c_int = 33;
53pub const SCTP_DEFAULT_SNDINFO: c_int = 34;
54
55pub const SCTP_SOCKOPT_BINDX_ADD: c_int = 100; pub const SCTP_SOCKOPT_BINDX_REM: c_int = 101; pub const SCTP_SOCKOPT_PEELOFF: c_int = 102; pub const SCTP_SOCKOPT_CONNECTX_OLD: c_int = 107; pub const SCTP_GET_PEER_ADDRS: c_int = 108; pub const SCTP_GET_LOCAL_ADDRS: c_int = 109; pub const SCTP_SOCKOPT_CONNECTX: c_int = 110; pub const SCTP_SOCKOPT_CONNECTX3: c_int = 111; pub const SCTP_GET_ASSOC_STATS: c_int = 112; pub const SCTP_UNORDERED: c_int = 1; pub const SCTP_ADDR_OVER: c_int = 2; pub const SCTP_ABORT: c_int = 4; pub const SCTP_SACK_IMMEDIATELY: c_int = 8;