/* SCTP kernel implementation * (C) Copyright IBM Corp. 2001, 2004 * Copyright (c) 1999-2000 Cisco, Inc. * Copyright (c) 1999-2001 Motorola, Inc. * Copyright (c) 2002 Intel Corp. * * This file is part of the SCTP kernel implementation * * This header represents the structures and constants needed to support * the SCTP Extension to the Sockets API. * * This SCTP implementation is free software; * you can redistribute it and/or modify it under the terms of * the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This SCTP implementation is distributed in the hope that it * will be useful, but WITHOUT ANY WARRANTY; without even the implied * ************************ * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GNU CC; see the file COPYING. If not, write to * the Free Software Foundation, 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * * Please send any bug reports or fixes you make to the * email address(es): * lksctp developers <lksctp-developers@lists.sourceforge.net> * * Or submit a bug report through the following website: * http://www.sf.net/projects/lksctp * * Written or modified by: * La Monte H.P. Yarroll <piggy@acm.org> * R. Stewart <randall@sctp.chicago.il.us> * K. Morneau <kmorneau@cisco.com> * Q. Xie <qxie1@email.mot.com> * Karl Knutson <karl@athena.chicago.il.us> * Jon Grimm <jgrimm@us.ibm.com> * Daisy Chang <daisyc@us.ibm.com> * Ryan Layer <rmlayer@us.ibm.com> * Ardelle Fan <ardelle.fan@intel.com> * Sridhar Samudrala <sri@us.ibm.com> * Inaky Perez-Gonzalez <inaky.gonzalez@intel.com> * Vlad Yasevich <vladislav.yasevich@hp.com> * * Any bugs reported given to us we will try to fix... any fixes shared will * be incorporated into the next SCTP release. */ #ifndef _SCTP_H #define _SCTP_H #include <linux/types.h> #include <linux/socket.h> typedef __s32 sctp_assoc_t; /* The following symbols come from the Sockets API Extensions for * SCTP <draft-ietf-tsvwg-sctpsocket-07.txt>. */ #define SCTP_RTOINFO 0 #define SCTP_ASSOCINFO 1 #define SCTP_INITMSG 2 #define SCTP_NODELAY 3 /* Get/set nodelay option. */ #define SCTP_AUTOCLOSE 4 #define SCTP_SET_PEER_PRIMARY_ADDR 5 #define SCTP_PRIMARY_ADDR 6 #define SCTP_ADAPTATION_LAYER 7 #define SCTP_DISABLE_FRAGMENTS 8 #define SCTP_PEER_ADDR_PARAMS 9 #define SCTP_DEFAULT_SEND_PARAM 10 #define SCTP_EVENTS 11 #define SCTP_I_WANT_MAPPED_V4_ADDR 12 /* Turn on/off mapped v4 addresses */ #define SCTP_MAXSEG 13 /* Get/set maximum fragment. */ #define SCTP_STATUS 14 #define SCTP_GET_PEER_ADDR_INFO 15 #define SCTP_DELAYED_ACK_TIME 16 #define SCTP_DELAYED_ACK SCTP_DELAYED_ACK_TIME #define SCTP_DELAYED_SACK SCTP_DELAYED_ACK_TIME #define SCTP_CONTEXT 17 #define SCTP_FRAGMENT_INTERLEAVE 18 #define SCTP_PARTIAL_DELIVERY_POINT 19 /* Set/Get partial delivery point */ #define SCTP_MAX_BURST 20 /* Set/Get max burst */ #define SCTP_AUTH_CHUNK 21 /* Set only: add a chunk type to authenticate */ #define SCTP_HMAC_IDENT 22 #define SCTP_AUTH_KEY 23 #define SCTP_AUTH_ACTIVE_KEY 24 #define SCTP_AUTH_DELETE_KEY 25 #define SCTP_PEER_AUTH_CHUNKS 26 /* Read only */ #define SCTP_LOCAL_AUTH_CHUNKS 27 /* Read only */ #define SCTP_GET_ASSOC_NUMBER 28 /* Read only */ #define SCTP_GET_ASSOC_ID_LIST 29 /* Read only */ #define SCTP_AUTO_ASCONF 30 #define SCTP_PEER_ADDR_THLDS 31 #define SCTP_RECVRCVINFO 32 #define SCTP_RECVNXTINFO 33 #define SCTP_DEFAULT_SNDINFO 34 /* Internal Socket Options. Some of the sctp library functions are * implemented using these socket options. */ #define SCTP_SOCKOPT_BINDX_ADD 100 /* BINDX requests for adding addrs */ #define SCTP_SOCKOPT_BINDX_REM 101 /* BINDX requests for removing addrs. */ #define SCTP_SOCKOPT_PEELOFF 102 /* peel off association. */ /* Options 104-106 are deprecated and removed. Do not use this space */ #define SCTP_SOCKOPT_CONNECTX_OLD 107 /* CONNECTX old requests. */ #define SCTP_GET_PEER_ADDRS 108 /* Get all peer address. */ #define SCTP_GET_LOCAL_ADDRS 109 /* Get all local address. */ #define SCTP_SOCKOPT_CONNECTX 110 /* CONNECTX requests. */ #define SCTP_SOCKOPT_CONNECTX3 111 /* CONNECTX requests (updated) */ #define SCTP_GET_ASSOC_STATS 112 /* Read only */ #define SCTP_PR_SUPPORTED 113 #define SCTP_DEFAULT_PRINFO 114 #define SCTP_PR_ASSOC_STATUS 115 #define SCTP_SOCKOPT_PEELOFF_FLAGS 122 /* PR-SCTP policies */ #define SCTP_PR_SCTP_NONE 0x0000 #define SCTP_PR_SCTP_TTL 0x0010 #define SCTP_PR_SCTP_RTX 0x0020 #define SCTP_PR_SCTP_PRIO 0x0030 #define SCTP_PR_SCTP_MAX SCTP_PR_SCTP_PRIO #define SCTP_PR_SCTP_MASK 0x0030 #define __SCTP_PR_INDEX(x) ((x >> 4) - 1) #define SCTP_PR_INDEX(x) __SCTP_PR_INDEX(SCTP_PR_SCTP_ ## x) #define SCTP_PR_POLICY(x) ((x) & SCTP_PR_SCTP_MASK) #define SCTP_PR_SET_POLICY(flags, x) \ do { \ flags &= ~SCTP_PR_SCTP_MASK; \ flags |= x; \ } while (0) #define SCTP_PR_TTL_ENABLED(x) (SCTP_PR_POLICY(x) == SCTP_PR_SCTP_TTL) #define SCTP_PR_RTX_ENABLED(x) (SCTP_PR_POLICY(x) == SCTP_PR_SCTP_RTX) #define SCTP_PR_PRIO_ENABLED(x) (SCTP_PR_POLICY(x) == SCTP_PR_SCTP_PRIO) /* These are bit fields for msghdr->msg_flags. See section 5.1. */ /* On user space Linux, these live in <bits/socket.h> as an enum. */ enum sctp_msg_flags { MSG_NOTIFICATION = 0x8000, #define MSG_NOTIFICATION MSG_NOTIFICATION }; /* 5.3.1 SCTP Initiation Structure (SCTP_INIT) * * This cmsghdr structure provides information for initializing new * SCTP associations with sendmsg(). The SCTP_INITMSG socket option * uses this same data structure. This structure is not used for * recvmsg(). * * cmsg_level cmsg_type cmsg_data[] * ------------ ------------ ---------------------- * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg */ struct sctp_initmsg { __u16 sinit_num_ostreams; __u16 sinit_max_instreams; __u16 sinit_max_attempts; __u16 sinit_max_init_timeo; }; /* 5.3.2 SCTP Header Information Structure (SCTP_SNDRCV) * * This cmsghdr structure specifies SCTP options for sendmsg() and * describes SCTP header information about a received message through * recvmsg(). * * cmsg_level cmsg_type cmsg_data[] * ------------ ------------ ---------------------- * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo */ struct sctp_sndrcvinfo { __u16 sinfo_stream; __u16 sinfo_ssn; __u16 sinfo_flags; __u32 sinfo_ppid; __u32 sinfo_context; __u32 sinfo_timetolive; __u32 sinfo_tsn; __u32 sinfo_cumtsn; sctp_assoc_t sinfo_assoc_id; }; /* 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO) * * This cmsghdr structure specifies SCTP options for sendmsg(). * * cmsg_level cmsg_type cmsg_data[] * ------------ ------------ ------------------- * IPPROTO_SCTP SCTP_SNDINFO struct sctp_sndinfo */ struct sctp_sndinfo { __u16 snd_sid; __u16 snd_flags; __u32 snd_ppid; __u32 snd_context; sctp_assoc_t snd_assoc_id; }; /* 5.3.5 SCTP Receive Information Structure (SCTP_RCVINFO) * * This cmsghdr structure describes SCTP receive information * about a received message through recvmsg(). * * cmsg_level cmsg_type cmsg_data[] * ------------ ------------ ------------------- * IPPROTO_SCTP SCTP_RCVINFO struct sctp_rcvinfo */ struct sctp_rcvinfo { __u16 rcv_sid; __u16 rcv_ssn; __u16 rcv_flags; __u32 rcv_ppid; __u32 rcv_tsn; __u32 rcv_cumtsn; __u32 rcv_context; sctp_assoc_t rcv_assoc_id; }; /* 5.3.6 SCTP Next Receive Information Structure (SCTP_NXTINFO) * * This cmsghdr structure describes SCTP receive information * of the next message that will be delivered through recvmsg() * if this information is already available when delivering * the current message. * * cmsg_level cmsg_type cmsg_data[] * ------------ ------------ ------------------- * IPPROTO_SCTP SCTP_NXTINFO struct sctp_nxtinfo */ struct sctp_nxtinfo { __u16 nxt_sid; __u16 nxt_flags; __u32 nxt_ppid; __u32 nxt_length; sctp_assoc_t nxt_assoc_id; }; /* * sinfo_flags: 16 bits (unsigned integer) * * This field may contain any of the following flags and is composed of * a bitwise OR of these values. */ enum sctp_sinfo_flags { SCTP_UNORDERED = (1 << 0), /* Send/receive message unordered. */ SCTP_ADDR_OVER = (1 << 1), /* Override the primary destination. */ SCTP_ABORT = (1 << 2), /* Send an ABORT message to the peer. */ SCTP_SACK_IMMEDIATELY = (1 << 3), /* SACK should be sent without delay. */ /* 2 bits here have been used by SCTP_PR_SCTP_MASK and * 1 bits for SCTP_SENDALL */ SCTP_PR_SCTP_ALL = (1 << 7), SCTP_NOTIFICATION = MSG_NOTIFICATION, /* Next message is not user msg but notification. */ SCTP_EOF = MSG_FIN, /* Initiate graceful shutdown process. */ }; typedef union { __u8 raw; struct sctp_initmsg init; struct sctp_sndrcvinfo sndrcv; } sctp_cmsg_data_t; /* These are cmsg_types. */ typedef enum sctp_cmsg_type { SCTP_INIT, /* 5.2.1 SCTP Initiation Structure */ #define SCTP_INIT SCTP_INIT SCTP_SNDRCV, /* 5.2.2 SCTP Header Information Structure */ #define SCTP_SNDRCV SCTP_SNDRCV SCTP_SNDINFO, /* 5.3.4 SCTP Send Information Structure */ #define SCTP_SNDINFO SCTP_SNDINFO SCTP_RCVINFO, /* 5.3.5 SCTP Receive Information Structure */ #define SCTP_RCVINFO SCTP_RCVINFO SCTP_NXTINFO, /* 5.3.6 SCTP Next Receive Information Structure */ #define SCTP_NXTINFO SCTP_NXTINFO } sctp_cmsg_t; /* * 5.3.1.1 SCTP_ASSOC_CHANGE * * Communication notifications inform the ULP that an SCTP association * has either begun or ended. The identifier for a new association is * provided by this notificaion. The notification information has the * following format: * */ struct sctp_assoc_change { __u16 sac_type; __u16 sac_flags; __u32 sac_length; __u16 sac_state; __u16 sac_error; __u16 sac_outbound_streams; __u16 sac_inbound_streams; sctp_assoc_t sac_assoc_id; __u8 sac_info[0]; }; /* * sac_state: 32 bits (signed integer) * * This field holds one of a number of values that communicate the * event that happened to the association. They include: * * Note: The following state names deviate from the API draft as * the names clash too easily with other kernel symbols. */ enum sctp_sac_state { SCTP_COMM_UP, SCTP_COMM_LOST, SCTP_RESTART, SCTP_SHUTDOWN_COMP, SCTP_CANT_STR_ASSOC, }; /* * 5.3.1.2 SCTP_PEER_ADDR_CHANGE * * When a destination address on a multi-homed peer encounters a change * an interface details event is sent. The information has the * following structure: */ struct sctp_paddr_change { __u16 spc_type; __u16 spc_flags; __u32 spc_length; struct sockaddr_storage spc_aaddr; int spc_state; int spc_error; sctp_assoc_t spc_assoc_id; } __attribute__((packed, aligned(4))); /* * spc_state: 32 bits (signed integer) * * This field holds one of a number of values that communicate the * event that happened to the address. They include: */ enum sctp_spc_state { SCTP_ADDR_AVAILABLE, SCTP_ADDR_UNREACHABLE, SCTP_ADDR_REMOVED, SCTP_ADDR_ADDED, SCTP_ADDR_MADE_PRIM, SCTP_ADDR_CONFIRMED, }; /* * 5.3.1.3 SCTP_REMOTE_ERROR * * A remote peer may send an Operational Error message to its peer. * This message indicates a variety of error conditions on an * association. The entire error TLV as it appears on the wire is * included in a SCTP_REMOTE_ERROR event. Please refer to the SCTP * specification [SCTP] and any extensions for a list of possible * error formats. SCTP error TLVs have the format: */ struct sctp_remote_error { __u16 sre_type; __u16 sre_flags; __u32 sre_length; __u16 sre_error; sctp_assoc_t sre_assoc_id; __u8 sre_data[0]; }; /* * 5.3.1.4 SCTP_SEND_FAILED * * If SCTP cannot deliver a message it may return the message as a * notification. */ struct sctp_send_failed { __u16 ssf_type; __u16 ssf_flags; __u32 ssf_length; __u32 ssf_error; struct sctp_sndrcvinfo ssf_info; sctp_assoc_t ssf_assoc_id; __u8 ssf_data[0]; }; /* * ssf_flags: 16 bits (unsigned integer) * * The flag value will take one of the following values * * SCTP_DATA_UNSENT - Indicates that the data was never put on * the wire. * * SCTP_DATA_SENT - Indicates that the data was put on the wire. * Note that this does not necessarily mean that the * data was (or was not) successfully delivered. */ enum sctp_ssf_flags { SCTP_DATA_UNSENT, SCTP_DATA_SENT, }; /* * 5.3.1.5 SCTP_SHUTDOWN_EVENT * * When a peer sends a SHUTDOWN, SCTP delivers this notification to * inform the application that it should cease sending data. */ struct sctp_shutdown_event { __u16 sse_type; __u16 sse_flags; __u32 sse_length; sctp_assoc_t sse_assoc_id; }; /* * 5.3.1.6 SCTP_ADAPTATION_INDICATION * * When a peer sends a Adaptation Layer Indication parameter , SCTP * delivers this notification to inform the application * that of the peers requested adaptation layer. */ struct sctp_adaptation_event { __u16 sai_type; __u16 sai_flags; __u32 sai_length; __u32 sai_adaptation_ind; sctp_assoc_t sai_assoc_id; }; /* * 5.3.1.7 SCTP_PARTIAL_DELIVERY_EVENT * * When a receiver is engaged in a partial delivery of a * message this notification will be used to indicate * various events. */ struct sctp_pdapi_event { __u16 pdapi_type; __u16 pdapi_flags; __u32 pdapi_length; __u32 pdapi_indication; sctp_assoc_t pdapi_assoc_id; }; enum { SCTP_PARTIAL_DELIVERY_ABORTED=0, }; /* * 5.3.1.8. SCTP_AUTHENTICATION_EVENT * * When a receiver is using authentication this message will provide * notifications regarding new keys being made active as well as errors. */ struct sctp_authkey_event { __u16 auth_type; __u16 auth_flags; __u32 auth_length; __u16 auth_keynumber; __u16 auth_altkeynumber; __u32 auth_indication; sctp_assoc_t auth_assoc_id; }; enum { SCTP_AUTH_NEWKEY = 0, }; /* * 6.1.9. SCTP_SENDER_DRY_EVENT * * When the SCTP stack has no more user data to send or retransmit, this * notification is given to the user. Also, at the time when a user app * subscribes to this event, if there is no data to be sent or * retransmit, the stack will immediately send up this notification. */ struct sctp_sender_dry_event { __u16 sender_dry_type; __u16 sender_dry_flags; __u32 sender_dry_length; sctp_assoc_t sender_dry_assoc_id; }; /* * Described in Section 7.3 * Ancillary Data and Notification Interest Options */ struct sctp_event_subscribe { __u8 sctp_data_io_event; __u8 sctp_association_event; __u8 sctp_address_event; __u8 sctp_send_failure_event; __u8 sctp_peer_error_event; __u8 sctp_shutdown_event; __u8 sctp_partial_delivery_event; __u8 sctp_adaptation_layer_event; __u8 sctp_authentication_event; __u8 sctp_sender_dry_event; }; /* * 5.3.1 SCTP Notification Structure * * The notification structure is defined as the union of all * notification types. * */ union sctp_notification { struct { __u16 sn_type; /* Notification type. */ __u16 sn_flags; __u32 sn_length; } sn_header; struct sctp_assoc_change sn_assoc_change; struct sctp_paddr_change sn_paddr_change; struct sctp_remote_error sn_remote_error; struct sctp_send_failed sn_send_failed; struct sctp_shutdown_event sn_shutdown_event; struct sctp_adaptation_event sn_adaptation_event; struct sctp_pdapi_event sn_pdapi_event; struct sctp_authkey_event sn_authkey_event; struct sctp_sender_dry_event sn_sender_dry_event; }; /* Section 5.3.1 * All standard values for sn_type flags are greater than 2^15. * Values from 2^15 and down are reserved. */ enum sctp_sn_type { SCTP_SN_TYPE_BASE = (1<<15), SCTP_ASSOC_CHANGE, #define SCTP_ASSOC_CHANGE SCTP_ASSOC_CHANGE SCTP_PEER_ADDR_CHANGE, #define SCTP_PEER_ADDR_CHANGE SCTP_PEER_ADDR_CHANGE SCTP_SEND_FAILED, #define SCTP_SEND_FAILED SCTP_SEND_FAILED SCTP_REMOTE_ERROR, #define SCTP_REMOTE_ERROR SCTP_REMOTE_ERROR SCTP_SHUTDOWN_EVENT, #define SCTP_SHUTDOWN_EVENT SCTP_SHUTDOWN_EVENT SCTP_PARTIAL_DELIVERY_EVENT, #define SCTP_PARTIAL_DELIVERY_EVENT SCTP_PARTIAL_DELIVERY_EVENT SCTP_ADAPTATION_INDICATION, #define SCTP_ADAPTATION_INDICATION SCTP_ADAPTATION_INDICATION SCTP_AUTHENTICATION_EVENT, #define SCTP_AUTHENTICATION_INDICATION SCTP_AUTHENTICATION_EVENT SCTP_SENDER_DRY_EVENT, #define SCTP_SENDER_DRY_EVENT SCTP_SENDER_DRY_EVENT }; /* Notification error codes used to fill up the error fields in some * notifications. * SCTP_PEER_ADDRESS_CHAGE : spc_error * SCTP_ASSOC_CHANGE : sac_error * These names should be potentially included in the draft 04 of the SCTP * sockets API specification. */ typedef enum sctp_sn_error { SCTP_FAILED_THRESHOLD, SCTP_RECEIVED_SACK, SCTP_HEARTBEAT_SUCCESS, SCTP_RESPONSE_TO_USER_REQ, SCTP_INTERNAL_ERROR, SCTP_SHUTDOWN_GUARD_EXPIRES, SCTP_PEER_FAULTY, } sctp_sn_error_t; /* * 7.1.1 Retransmission Timeout Parameters (SCTP_RTOINFO) * * The protocol parameters used to initialize and bound retransmission * timeout (RTO) are tunable. See [SCTP] for more information on how * these parameters are used in RTO calculation. */ struct sctp_rtoinfo { sctp_assoc_t srto_assoc_id; __u32 srto_initial; __u32 srto_max; __u32 srto_min; }; /* * 7.1.2 Association Parameters (SCTP_ASSOCINFO) * * This option is used to both examine and set various association and * endpoint parameters. */ struct sctp_assocparams { sctp_assoc_t sasoc_assoc_id; __u16 sasoc_asocmaxrxt; __u16 sasoc_number_peer_destinations; __u32 sasoc_peer_rwnd; __u32 sasoc_local_rwnd; __u32 sasoc_cookie_life; }; /* * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR) * * Requests that the peer mark the enclosed address as the association * primary. The enclosed address must be one of the association's * locally bound addresses. The following structure is used to make a * set primary request: */ struct sctp_setpeerprim { sctp_assoc_t sspp_assoc_id; struct sockaddr_storage sspp_addr; } __attribute__((packed, aligned(4))); /* * 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR) * * Requests that the local SCTP stack use the enclosed peer address as * the association primary. The enclosed address must be one of the * association peer's addresses. The following structure is used to * make a set peer primary request: */ struct sctp_prim { sctp_assoc_t ssp_assoc_id; struct sockaddr_storage ssp_addr; } __attribute__((packed, aligned(4))); /* For backward compatibility use, define the old name too */ #define sctp_setprim sctp_prim /* * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER) * * Requests that the local endpoint set the specified Adaptation Layer * Indication parameter for all future INIT and INIT-ACK exchanges. */ struct sctp_setadaptation { __u32 ssb_adaptation_ind; }; /* * 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS) * * Applications can enable or disable heartbeats for any peer address * of an association, modify an address's heartbeat interval, force a * heartbeat to be sent immediately, and adjust the address's maximum * number of retransmissions sent before an address is considered * unreachable. The following structure is used to access and modify an * address's parameters: */ enum sctp_spp_flags { SPP_HB_ENABLE = 1<<0, /*Enable heartbeats*/ SPP_HB_DISABLE = 1<<1, /*Disable heartbeats*/ SPP_HB = SPP_HB_ENABLE | SPP_HB_DISABLE, SPP_HB_DEMAND = 1<<2, /*Send heartbeat immediately*/ SPP_PMTUD_ENABLE = 1<<3, /*Enable PMTU discovery*/ SPP_PMTUD_DISABLE = 1<<4, /*Disable PMTU discovery*/ SPP_PMTUD = SPP_PMTUD_ENABLE | SPP_PMTUD_DISABLE, SPP_SACKDELAY_ENABLE = 1<<5, /*Enable SACK*/ SPP_SACKDELAY_DISABLE = 1<<6, /*Disable SACK*/ SPP_SACKDELAY = SPP_SACKDELAY_ENABLE | SPP_SACKDELAY_DISABLE, SPP_HB_TIME_IS_ZERO = 1<<7, /* Set HB delay to 0 */ }; struct sctp_paddrparams { sctp_assoc_t spp_assoc_id; struct sockaddr_storage spp_address; __u32 spp_hbinterval; __u16 spp_pathmaxrxt; __u32 spp_pathmtu; __u32 spp_sackdelay; __u32 spp_flags; } __attribute__((packed, aligned(4))); /* * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK) * * This set option adds a chunk type that the user is requesting to be * received only in an authenticated way. Changes to the list of chunks * will only effect future associations on the socket. */ struct sctp_authchunk { __u8 sauth_chunk; }; /* * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT) * * This option gets or sets the list of HMAC algorithms that the local * endpoint requires the peer to use. */ /* This here is only used by user space as is. It might not be a good idea * to export/reveal the whole structure with reserved fields etc. */ enum { SCTP_AUTH_HMAC_ID_SHA1 = 1, SCTP_AUTH_HMAC_ID_SHA256 = 3, }; struct sctp_hmacalgo { __u32 shmac_num_idents; __u16 shmac_idents[]; }; /* Sadly, user and kernel space have different names for * this structure member, so this is to not break anything. */ #define shmac_number_of_idents shmac_num_idents /* * 7.1.20. Set a shared key (SCTP_AUTH_KEY) * * This option will set a shared secret key which is used to build an * association shared key. */ struct sctp_authkey { sctp_assoc_t sca_assoc_id; __u16 sca_keynumber; __u16 sca_keylength; __u8 sca_key[]; }; /* * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY) * * This option will get or set the active shared key to be used to build * the association shared key. */ struct sctp_authkeyid { sctp_assoc_t scact_assoc_id; __u16 scact_keynumber; }; /* * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK) * * This option will effect the way delayed acks are performed. This * option allows you to get or set the delayed ack time, in * milliseconds. It also allows changing the delayed ack frequency. * Changing the frequency to 1 disables the delayed sack algorithm. If * the assoc_id is 0, then this sets or gets the endpoints default * values. If the assoc_id field is non-zero, then the set or get * effects the specified association for the one to many model (the * assoc_id field is ignored by the one to one model). Note that if * sack_delay or sack_freq are 0 when setting this option, then the * current values will remain unchanged. */ struct sctp_sack_info { sctp_assoc_t sack_assoc_id; uint32_t sack_delay; uint32_t sack_freq; }; struct sctp_assoc_value { sctp_assoc_t assoc_id; uint32_t assoc_value; }; /* * 7.2.2 Peer Address Information * * Applications can retrieve information about a specific peer address * of an association, including its reachability state, congestion * window, and retransmission timer values. This information is * read-only. The following structure is used to access this * information: */ struct sctp_paddrinfo { sctp_assoc_t spinfo_assoc_id; struct sockaddr_storage spinfo_address; __s32 spinfo_state; __u32 spinfo_cwnd; __u32 spinfo_srtt; __u32 spinfo_rto; __u32 spinfo_mtu; } __attribute__((packed, aligned(4))); /* Peer addresses's state. */ /* UNKNOWN: Peer address passed by the upper layer in sendmsg or connect[x] * calls. * UNCONFIRMED: Peer address received in INIT/INIT-ACK address parameters. * Not yet confirmed by a heartbeat and not available for data * transfers. * ACTIVE : Peer address confirmed, active and available for data transfers. * INACTIVE: Peer address inactive and not available for data transfers. */ enum sctp_spinfo_state { SCTP_INACTIVE, SCTP_PF, SCTP_ACTIVE, SCTP_UNCONFIRMED, SCTP_UNKNOWN = 0xffff /* Value used for transport state unknown */ }; /* * 7.2.1 Association Status (SCTP_STATUS) * * Applications can retrieve current status information about an * association, including association state, peer receiver window size, * number of unacked data chunks, and number of data chunks pending * receipt. This information is read-only. The following structure is * used to access this information: */ struct sctp_status { sctp_assoc_t sstat_assoc_id; __s32 sstat_state; __u32 sstat_rwnd; __u16 sstat_unackdata; __u16 sstat_penddata; __u16 sstat_instrms; __u16 sstat_outstrms; __u32 sstat_fragmentation_point; struct sctp_paddrinfo sstat_primary; }; /* * 7.2.3. Get the list of chunks the peer requires to be authenticated * (SCTP_PEER_AUTH_CHUNKS) * * This option gets a list of chunks for a specified association that * the peer requires to be received authenticated only. */ struct sctp_authchunks { sctp_assoc_t gauth_assoc_id; __u32 gauth_number_of_chunks; uint8_t gauth_chunks[]; }; /* The broken spelling has been released already in lksctp-tools header, * so don't break anyone, now that it's fixed. */ #define guth_number_of_chunks gauth_number_of_chunks /* Association states. */ enum sctp_sstat_state { SCTP_EMPTY = 0, SCTP_CLOSED = 1, SCTP_COOKIE_WAIT = 2, SCTP_COOKIE_ECHOED = 3, SCTP_ESTABLISHED = 4, SCTP_SHUTDOWN_PENDING = 5, SCTP_SHUTDOWN_SENT = 6, SCTP_SHUTDOWN_RECEIVED = 7, SCTP_SHUTDOWN_ACK_SENT = 8, }; /* * 8.2.6. Get the Current Identifiers of Associations * (SCTP_GET_ASSOC_ID_LIST) * * This option gets the current list of SCTP association identifiers of * the SCTP associations handled by a one-to-many style socket. */ struct sctp_assoc_ids { __u32 gaids_number_of_ids; sctp_assoc_t gaids_assoc_id[]; }; /* * 8.3, 8.5 get all peer/local addresses in an association. * This parameter struct is used by SCTP_GET_PEER_ADDRS and * SCTP_GET_LOCAL_ADDRS socket options used internally to implement * sctp_getpaddrs() and sctp_getladdrs() API. */ struct sctp_getaddrs_old { sctp_assoc_t assoc_id; int addr_num; struct sockaddr *addrs; }; struct sctp_getaddrs { sctp_assoc_t assoc_id; /*input*/ __u32 addr_num; /*output*/ __u8 addrs[0]; /*output, variable size*/ }; /* A socket user request obtained via SCTP_GET_ASSOC_STATS that retrieves * association stats. All stats are counts except sas_maxrto and * sas_obs_rto_ipaddr. maxrto is the max observed rto + transport since * the last call. Will return 0 when RTO was not update since last call */ struct sctp_assoc_stats { sctp_assoc_t sas_assoc_id; /* Input */ /* Transport of observed max RTO */ struct sockaddr_storage sas_obs_rto_ipaddr; __u64 sas_maxrto; /* Maximum Observed RTO for period */ __u64 sas_isacks; /* SACKs received */ __u64 sas_osacks; /* SACKs sent */ __u64 sas_opackets; /* Packets sent */ __u64 sas_ipackets; /* Packets received */ __u64 sas_rtxchunks; /* Retransmitted Chunks */ __u64 sas_outofseqtsns;/* TSN received > next expected */ __u64 sas_idupchunks; /* Dups received (ordered+unordered) */ __u64 sas_gapcnt; /* Gap Acknowledgements Received */ __u64 sas_ouodchunks; /* Unordered data chunks sent */ __u64 sas_iuodchunks; /* Unordered data chunks received */ __u64 sas_oodchunks; /* Ordered data chunks sent */ __u64 sas_iodchunks; /* Ordered data chunks received */ __u64 sas_octrlchunks; /* Control chunks sent */ __u64 sas_ictrlchunks; /* Control chunks received */ }; /* * 8.1 sctp_bindx() * * The flags parameter is formed from the bitwise OR of zero or more of the * following currently defined flags: */ #define SCTP_BINDX_ADD_ADDR 0x01 #define SCTP_BINDX_REM_ADDR 0x02 /* This is the structure that is passed as an argument(optval) to * getsockopt(SCTP_SOCKOPT_PEELOFF). */ typedef struct { sctp_assoc_t associd; int sd; } sctp_peeloff_arg_t; typedef struct { sctp_peeloff_arg_t p_arg; unsigned flags; } sctp_peeloff_flags_arg_t; /* * Peer Address Thresholds socket option */ struct sctp_paddrthlds { sctp_assoc_t spt_assoc_id; struct sockaddr_storage spt_address; __u16 spt_pathmaxrxt; __u16 spt_pathpfthld; }; /* * Socket Option for Getting the Association/Stream-Specific PR-SCTP Status */ struct sctp_prstatus { sctp_assoc_t sprstat_assoc_id; __u16 sprstat_sid; __u16 sprstat_policy; __u64 sprstat_abandoned_unsent; __u64 sprstat_abandoned_sent; }; struct sctp_default_prinfo { sctp_assoc_t pr_assoc_id; __u32 pr_value; __u16 pr_policy; }; struct sctp_info { __u32 sctpi_tag; __u32 sctpi_state; __u32 sctpi_rwnd; __u16 sctpi_unackdata; __u16 sctpi_penddata; __u16 sctpi_instrms; __u16 sctpi_outstrms; __u32 sctpi_fragmentation_point; __u32 sctpi_inqueue; __u32 sctpi_outqueue; __u32 sctpi_overall_error; __u32 sctpi_max_burst; __u32 sctpi_maxseg; __u32 sctpi_peer_rwnd; __u32 sctpi_peer_tag; __u8 sctpi_peer_capable; __u8 sctpi_peer_sack; __u16 __reserved1; /* assoc status info */ __u64 sctpi_isacks; __u64 sctpi_osacks; __u64 sctpi_opackets; __u64 sctpi_ipackets; __u64 sctpi_rtxchunks; __u64 sctpi_outofseqtsns; __u64 sctpi_idupchunks; __u64 sctpi_gapcnt; __u64 sctpi_ouodchunks; __u64 sctpi_iuodchunks; __u64 sctpi_oodchunks; __u64 sctpi_iodchunks; __u64 sctpi_octrlchunks; __u64 sctpi_ictrlchunks; /* primary transport info */ struct sockaddr_storage sctpi_p_address; __s32 sctpi_p_state; __u32 sctpi_p_cwnd; __u32 sctpi_p_srtt; __u32 sctpi_p_rto; __u32 sctpi_p_hbinterval; __u32 sctpi_p_pathmaxrxt; __u32 sctpi_p_sackdelay; __u32 sctpi_p_sackfreq; __u32 sctpi_p_ssthresh; __u32 sctpi_p_partial_bytes_acked; __u32 sctpi_p_flight_size; __u16 sctpi_p_error; __u16 __reserved2; /* sctp sock info */ __u32 sctpi_s_autoclose; __u32 sctpi_s_adaptation_ind; __u32 sctpi_s_pd_point; __u8 sctpi_s_nodelay; __u8 sctpi_s_disable_fragments; __u8 sctpi_s_v4mapped; __u8 sctpi_s_frag_interleave; __u32 sctpi_s_type; __u32 __reserved3; }; #endif /* _SCTP_H */
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
byteorder | Folder | 0755 |
|
|
caif | Folder | 0755 |
|
|
can | Folder | 0755 |
|
|
dvb | Folder | 0755 |
|
|
hdlc | Folder | 0755 |
|
|
hsi | Folder | 0755 |
|
|
iio | Folder | 0755 |
|
|
isdn | Folder | 0755 |
|
|
mmc | Folder | 0755 |
|
|
netfilter | Folder | 0755 |
|
|
netfilter_arp | Folder | 0755 |
|
|
netfilter_bridge | Folder | 0755 |
|
|
netfilter_ipv4 | Folder | 0755 |
|
|
netfilter_ipv6 | Folder | 0755 |
|
|
nfsd | Folder | 0755 |
|
|
raid | Folder | 0755 |
|
|
spi | Folder | 0755 |
|
|
sunrpc | Folder | 0755 |
|
|
tc_act | Folder | 0755 |
|
|
tc_ematch | Folder | 0755 |
|
|
usb | Folder | 0755 |
|
|
wimax | Folder | 0755 |
|
|
a.out.h | File | 7.15 KB | 0644 |
|
acct.h | File | 3.58 KB | 0644 |
|
adb.h | File | 1.05 KB | 0644 |
|
adfs_fs.h | File | 873 B | 0644 |
|
affs_hardblocks.h | File | 1.45 KB | 0644 |
|
agpgart.h | File | 3.83 KB | 0644 |
|
aio_abi.h | File | 3.1 KB | 0644 |
|
apm_bios.h | File | 3.46 KB | 0644 |
|
arcfb.h | File | 150 B | 0644 |
|
atalk.h | File | 960 B | 0644 |
|
atm.h | File | 7.64 KB | 0644 |
|
atm_eni.h | File | 585 B | 0644 |
|
atm_he.h | File | 343 B | 0644 |
|
atm_idt77105.h | File | 892 B | 0644 |
|
atm_nicstar.h | File | 1.19 KB | 0644 |
|
atm_tcp.h | File | 1.52 KB | 0644 |
|
atm_zatm.h | File | 1.57 KB | 0644 |
|
atmapi.h | File | 889 B | 0644 |
|
atmarp.h | File | 1.2 KB | 0644 |
|
atmbr2684.h | File | 3.13 KB | 0644 |
|
atmclip.h | File | 513 B | 0644 |
|
atmdev.h | File | 7.44 KB | 0644 |
|
atmioc.h | File | 1.55 KB | 0644 |
|
atmlec.h | File | 2.26 KB | 0644 |
|
atmmpc.h | File | 4.07 KB | 0644 |
|
atmppp.h | File | 576 B | 0644 |
|
atmsap.h | File | 4.79 KB | 0644 |
|
atmsvc.h | File | 1.75 KB | 0644 |
|
audit.h | File | 18.03 KB | 0644 |
|
auto_fs.h | File | 2.53 KB | 0644 |
|
auto_fs4.h | File | 4.3 KB | 0644 |
|
auxvec.h | File | 1.4 KB | 0644 |
|
ax25.h | File | 2.7 KB | 0644 |
|
b1lli.h | File | 1.62 KB | 0644 |
|
baycom.h | File | 820 B | 0644 |
|
bfs_fs.h | File | 1.79 KB | 0644 |
|
binfmts.h | File | 565 B | 0644 |
|
blkpg.h | File | 1.53 KB | 0644 |
|
blktrace_api.h | File | 4.38 KB | 0644 |
|
bpf.h | File | 22.04 KB | 0644 |
|
bpf_common.h | File | 1.2 KB | 0644 |
|
bpf_perf_event.h | File | 453 B | 0644 |
|
bpqether.h | File | 952 B | 0644 |
|
bsg.h | File | 2.37 KB | 0644 |
|
bt-bmc.h | File | 508 B | 0644 |
|
btrfs.h | File | 25.07 KB | 0644 |
|
can.h | File | 5.46 KB | 0644 |
|
capability.h | File | 11.25 KB | 0644 |
|
capi.h | File | 2.99 KB | 0644 |
|
cciss_defs.h | File | 3.14 KB | 0644 |
|
cciss_ioctl.h | File | 2.63 KB | 0644 |
|
cdrom.h | File | 28.12 KB | 0644 |
|
cgroupstats.h | File | 2.1 KB | 0644 |
|
chio.h | File | 5.16 KB | 0644 |
|
cm4000_cs.h | File | 1.68 KB | 0644 |
|
cn_proc.h | File | 3.19 KB | 0644 |
|
coda.h | File | 17.09 KB | 0644 |
|
coda_psdev.h | File | 720 B | 0644 |
|
coff.h | File | 12.12 KB | 0644 |
|
connector.h | File | 2.14 KB | 0644 |
|
const.h | File | 673 B | 0644 |
|
cramfs_fs.h | File | 2.68 KB | 0644 |
|
cuda.h | File | 842 B | 0644 |
|
cyclades.h | File | 16.65 KB | 0644 |
|
cycx_cfm.h | File | 2.86 KB | 0644 |
|
dcbnl.h | File | 24.5 KB | 0644 |
|
dccp.h | File | 6.22 KB | 0644 |
|
devlink.h | File | 9.66 KB | 0644 |
|
dlm.h | File | 2.43 KB | 0644 |
|
dlm_device.h | File | 2.42 KB | 0644 |
|
dlm_netlink.h | File | 1.04 KB | 0644 |
|
dlm_plock.h | File | 831 B | 0644 |
|
dlmconstants.h | File | 4.9 KB | 0644 |
|
dm-ioctl.h | File | 10.55 KB | 0644 |
|
dm-log-userspace.h | File | 14.82 KB | 0644 |
|
dn.h | File | 4.42 KB | 0644 |
|
dqblk_xfs.h | File | 8.72 KB | 0644 |
|
edd.h | File | 5.41 KB | 0644 |
|
efs_fs_sb.h | File | 2.11 KB | 0644 |
|
elf-em.h | File | 1.83 KB | 0644 |
|
elf-fdpic.h | File | 1.04 KB | 0644 |
|
elf.h | File | 12.69 KB | 0644 |
|
elfcore.h | File | 2.86 KB | 0644 |
|
errno.h | File | 23 B | 0644 |
|
errqueue.h | File | 1.1 KB | 0644 |
|
ethtool.h | File | 71.11 KB | 0644 |
|
eventpoll.h | File | 1.76 KB | 0644 |
|
fadvise.h | File | 779 B | 0644 |
|
falloc.h | File | 2.72 KB | 0644 |
|
fanotify.h | File | 3.52 KB | 0644 |
|
fb.h | File | 16 KB | 0644 |
|
fcntl.h | File | 2.16 KB | 0644 |
|
fd.h | File | 11.31 KB | 0644 |
|
fdreg.h | File | 5.23 KB | 0644 |
|
fib_rules.h | File | 1.58 KB | 0644 |
|
fiemap.h | File | 2.65 KB | 0644 |
|
filter.h | File | 1.99 KB | 0644 |
|
firewire-cdev.h | File | 42.86 KB | 0644 |
|
firewire-constants.h | File | 3.16 KB | 0644 |
|
flat.h | File | 2.04 KB | 0644 |
|
fou.h | File | 617 B | 0644 |
|
fs.h | File | 8.47 KB | 0644 |
|
fsl_hypervisor.h | File | 7.05 KB | 0644 |
|
fuse.h | File | 16.41 KB | 0644 |
|
futex.h | File | 4.81 KB | 0644 |
|
gameport.h | File | 834 B | 0644 |
|
gen_stats.h | File | 1.5 KB | 0644 |
|
genetlink.h | File | 1.82 KB | 0644 |
|
gfs2_ondisk.h | File | 12 KB | 0644 |
|
gigaset_dev.h | File | 1.35 KB | 0644 |
|
hdlc.h | File | 574 B | 0644 |
|
hdlcdrv.h | File | 2.78 KB | 0644 |
|
hdreg.h | File | 22.11 KB | 0644 |
|
hid.h | File | 1.79 KB | 0644 |
|
hiddev.h | File | 6.13 KB | 0644 |
|
hidraw.h | File | 1.41 KB | 0644 |
|
hpet.h | File | 680 B | 0644 |
|
hw_breakpoint.h | File | 679 B | 0644 |
|
hyperv.h | File | 10.22 KB | 0644 |
|
hysdn_if.h | File | 1.29 KB | 0644 |
|
i2c-dev.h | File | 2.37 KB | 0644 |
|
i2c.h | File | 6.66 KB | 0644 |
|
i2o-dev.h | File | 11.22 KB | 0644 |
|
i8k.h | File | 1.4 KB | 0644 |
|
icmp.h | File | 2.82 KB | 0644 |
|
icmpv6.h | File | 3.82 KB | 0644 |
|
if.h | File | 9.26 KB | 0644 |
|
if_addr.h | File | 1.7 KB | 0644 |
|
if_addrlabel.h | File | 658 B | 0644 |
|
if_alg.h | File | 816 B | 0644 |
|
if_arcnet.h | File | 3.63 KB | 0644 |
|
if_arp.h | File | 6.3 KB | 0644 |
|
if_bonding.h | File | 4.66 KB | 0644 |
|
if_bridge.h | File | 6.46 KB | 0644 |
|
if_cablemodem.h | File | 922 B | 0644 |
|
if_eql.h | File | 1.26 KB | 0644 |
|
if_ether.h | File | 7.25 KB | 0644 |
|
if_fc.h | File | 1.63 KB | 0644 |
|
if_fddi.h | File | 3.6 KB | 0644 |
|
if_frad.h | File | 2.89 KB | 0644 |
|
if_hippi.h | File | 4.07 KB | 0644 |
|
if_infiniband.h | File | 1.13 KB | 0644 |
|
if_link.h | File | 19.58 KB | 0644 |
|
if_ltalk.h | File | 147 B | 0644 |
|
if_macsec.h | File | 5.42 KB | 0644 |
|
if_packet.h | File | 7.15 KB | 0644 |
|
if_phonet.h | File | 361 B | 0644 |
|
if_plip.h | File | 596 B | 0644 |
|
if_ppp.h | File | 29 B | 0644 |
|
if_pppol2tp.h | File | 3.18 KB | 0644 |
|
if_pppox.h | File | 4.64 KB | 0644 |
|
if_slip.h | File | 809 B | 0644 |
|
if_team.h | File | 2.48 KB | 0644 |
|
if_tun.h | File | 3.71 KB | 0644 |
|
if_tunnel.h | File | 3.03 KB | 0644 |
|
if_vlan.h | File | 1.69 KB | 0644 |
|
if_x25.h | File | 817 B | 0644 |
|
ife.h | File | 288 B | 0644 |
|
igmp.h | File | 2.88 KB | 0644 |
|
in.h | File | 9.36 KB | 0644 |
|
in6.h | File | 6.97 KB | 0644 |
|
in_route.h | File | 873 B | 0644 |
|
inet_diag.h | File | 2.77 KB | 0644 |
|
inotify.h | File | 2.85 KB | 0644 |
|
input.h | File | 32.52 KB | 0644 |
|
ioctl.h | File | 100 B | 0644 |
|
ip.h | File | 3.47 KB | 0644 |
|
ip6_tunnel.h | File | 1.67 KB | 0644 |
|
ip_vs.h | File | 12.77 KB | 0644 |
|
ipc.h | File | 1.99 KB | 0644 |
|
ipmi.h | File | 14.63 KB | 0644 |
|
ipmi_msgdefs.h | File | 3.21 KB | 0644 |
|
ipsec.h | File | 884 B | 0644 |
|
ipv6.h | File | 3.66 KB | 0644 |
|
ipv6_route.h | File | 1.73 KB | 0644 |
|
ipx.h | File | 1.79 KB | 0644 |
|
irda.h | File | 7.31 KB | 0644 |
|
irqnr.h | File | 104 B | 0644 |
|
isdn.h | File | 5.58 KB | 0644 |
|
isdn_divertif.h | File | 1.11 KB | 0644 |
|
isdn_ppp.h | File | 1.82 KB | 0644 |
|
isdnif.h | File | 2.25 KB | 0644 |
|
iso_fs.h | File | 6.29 KB | 0644 |
|
ivtv.h | File | 2.89 KB | 0644 |
|
ivtvfb.h | File | 1.12 KB | 0644 |
|
ixjuser.h | File | 24.53 KB | 0644 |
|
jffs2.h | File | 6.85 KB | 0644 |
|
joystick.h | File | 3.5 KB | 0644 |
|
kd.h | File | 6.04 KB | 0644 |
|
kdev_t.h | File | 320 B | 0644 |
|
kernel-page-flags.h | File | 788 B | 0644 |
|
kernel.h | File | 375 B | 0644 |
|
kernelcapi.h | File | 956 B | 0644 |
|
kexec.h | File | 1.92 KB | 0644 |
|
keyboard.h | File | 12.42 KB | 0644 |
|
keyctl.h | File | 2.98 KB | 0644 |
|
kvm.h | File | 33.89 KB | 0644 |
|
kvm_para.h | File | 819 B | 0644 |
|
l2tp.h | File | 4.98 KB | 0644 |
|
libc-compat.h | File | 4.03 KB | 0644 |
|
limits.h | File | 874 B | 0644 |
|
llc.h | File | 2.98 KB | 0644 |
|
loop.h | File | 2.31 KB | 0644 |
|
lp.h | File | 3.72 KB | 0644 |
|
lwtunnel.h | File | 839 B | 0644 |
|
magic.h | File | 2.9 KB | 0644 |
|
major.h | File | 4.48 KB | 0644 |
|
map_to_7segment.h | File | 7.02 KB | 0644 |
|
matroxfb.h | File | 1.37 KB | 0644 |
|
mdio.h | File | 13.74 KB | 0644 |
|
media.h | File | 3.5 KB | 0644 |
|
mei.h | File | 4.62 KB | 0644 |
|
membarrier.h | File | 7.71 KB | 0644 |
|
memfd.h | File | 186 B | 0644 |
|
mempolicy.h | File | 2.35 KB | 0644 |
|
meye.h | File | 2.41 KB | 0644 |
|
mii.h | File | 7.76 KB | 0644 |
|
minix_fs.h | File | 2.01 KB | 0644 |
|
mman.h | File | 230 B | 0644 |
|
mmtimer.h | File | 2.01 KB | 0644 |
|
mpls.h | File | 1.33 KB | 0644 |
|
mqueue.h | File | 2.01 KB | 0644 |
|
mroute.h | File | 4.06 KB | 0644 |
|
mroute6.h | File | 4.08 KB | 0644 |
|
msdos_fs.h | File | 6.28 KB | 0644 |
|
msg.h | File | 3.21 KB | 0644 |
|
mtio.h | File | 7.92 KB | 0644 |
|
n_r3964.h | File | 2.29 KB | 0644 |
|
nbd.h | File | 2.34 KB | 0644 |
|
ncp.h | File | 4.94 KB | 0644 |
|
ncp_fs.h | File | 3.27 KB | 0644 |
|
ncp_mount.h | File | 2.06 KB | 0644 |
|
ncp_no.h | File | 651 B | 0644 |
|
ndctl.h | File | 6.6 KB | 0644 |
|
neighbour.h | File | 4.17 KB | 0644 |
|
net.h | File | 1.97 KB | 0644 |
|
net_dropmon.h | File | 1.07 KB | 0644 |
|
net_namespace.h | File | 609 B | 0644 |
|
net_tstamp.h | File | 4.06 KB | 0644 |
|
netconf.h | File | 423 B | 0644 |
|
netdevice.h | File | 1.46 KB | 0644 |
|
netfilter.h | File | 1.6 KB | 0644 |
|
netfilter_arp.h | File | 380 B | 0644 |
|
netfilter_bridge.h | File | 768 B | 0644 |
|
netfilter_decnet.h | File | 1.83 KB | 0644 |
|
netfilter_ipv4.h | File | 2.02 KB | 0644 |
|
netfilter_ipv6.h | File | 2.04 KB | 0644 |
|
netlink.h | File | 6.13 KB | 0644 |
|
netlink_diag.h | File | 1005 B | 0644 |
|
netrom.h | File | 744 B | 0644 |
|
nfc.h | File | 7.72 KB | 0644 |
|
nfs.h | File | 4.31 KB | 0644 |
|
nfs2.h | File | 1.37 KB | 0644 |
|
nfs3.h | File | 2.24 KB | 0644 |
|
nfs4.h | File | 5.95 KB | 0644 |
|
nfs4_mount.h | File | 1.83 KB | 0644 |
|
nfs_fs.h | File | 1.51 KB | 0644 |
|
nfs_idmap.h | File | 2.19 KB | 0644 |
|
nfs_mount.h | File | 2.32 KB | 0644 |
|
nfsacl.h | File | 605 B | 0644 |
|
nl80211.h | File | 270.89 KB | 0644 |
|
nubus.h | File | 8.17 KB | 0644 |
|
nvme_ioctl.h | File | 1.55 KB | 0644 |
|
nvram.h | File | 469 B | 0644 |
|
omap3isp.h | File | 20.19 KB | 0644 |
|
omapfb.h | File | 5.72 KB | 0644 |
|
oom.h | File | 448 B | 0644 |
|
openvswitch.h | File | 31.79 KB | 0644 |
|
packet_diag.h | File | 1.5 KB | 0644 |
|
param.h | File | 78 B | 0644 |
|
parport.h | File | 3.56 KB | 0644 |
|
patchkey.h | File | 829 B | 0644 |
|
pci.h | File | 1.29 KB | 0644 |
|
pci_regs.h | File | 50.79 KB | 0644 |
|
perf_event.h | File | 31.96 KB | 0644 |
|
personality.h | File | 1.99 KB | 0644 |
|
pfkeyv2.h | File | 9.91 KB | 0644 |
|
pg.h | File | 2.23 KB | 0644 |
|
phantom.h | File | 1.55 KB | 0644 |
|
phonet.h | File | 4.51 KB | 0644 |
|
pkt_cls.h | File | 12.49 KB | 0644 |
|
pkt_sched.h | File | 20.63 KB | 0644 |
|
pktcdvd.h | File | 2.56 KB | 0644 |
|
pmu.h | File | 5.13 KB | 0644 |
|
poll.h | File | 22 B | 0644 |
|
posix_types.h | File | 1.01 KB | 0644 |
|
ppdev.h | File | 3.07 KB | 0644 |
|
ppp-comp.h | File | 2.41 KB | 0644 |
|
ppp-ioctl.h | File | 5.29 KB | 0644 |
|
ppp_defs.h | File | 4.93 KB | 0644 |
|
pps.h | File | 4.06 KB | 0644 |
|
prctl.h | File | 6.75 KB | 0644 |
|
psample.h | File | 735 B | 0644 |
|
ptp_clock.h | File | 5.09 KB | 0644 |
|
ptrace.h | File | 3.08 KB | 0644 |
|
qnx4_fs.h | File | 2.21 KB | 0644 |
|
qnxtypes.h | File | 561 B | 0644 |
|
quota.h | File | 5.78 KB | 0644 |
|
radeonfb.h | File | 297 B | 0644 |
|
random.h | File | 1.2 KB | 0644 |
|
raw.h | File | 302 B | 0644 |
|
rds.h | File | 7.9 KB | 0644 |
|
reboot.h | File | 1.25 KB | 0644 |
|
reiserfs_fs.h | File | 712 B | 0644 |
|
reiserfs_xattr.h | File | 470 B | 0644 |
|
resource.h | File | 2.09 KB | 0644 |
|
rfkill.h | File | 3.5 KB | 0644 |
|
romfs_fs.h | File | 1.15 KB | 0644 |
|
rose.h | File | 2.12 KB | 0644 |
|
route.h | File | 2.21 KB | 0644 |
|
rtc.h | File | 3.85 KB | 0644 |
|
rtnetlink.h | File | 17.02 KB | 0644 |
|
scc.h | File | 4.43 KB | 0644 |
|
sched.h | File | 2.26 KB | 0644 |
|
screen_info.h | File | 2.36 KB | 0644 |
|
sctp.h | File | 29.53 KB | 0644 |
|
sdla.h | File | 2.71 KB | 0644 |
|
seccomp.h | File | 1.83 KB | 0644 |
|
securebits.h | File | 2.58 KB | 0644 |
|
selinux_netlink.h | File | 1.11 KB | 0644 |
|
sem.h | File | 2.54 KB | 0644 |
|
serial.h | File | 3.04 KB | 0644 |
|
serial_core.h | File | 5.11 KB | 0644 |
|
serial_reg.h | File | 15.66 KB | 0644 |
|
serio.h | File | 1.81 KB | 0644 |
|
shm.h | File | 2.19 KB | 0644 |
|
signal.h | File | 171 B | 0644 |
|
signalfd.h | File | 1.07 KB | 0644 |
|
snmp.h | File | 12.42 KB | 0644 |
|
sock_diag.h | File | 431 B | 0644 |
|
socket.h | File | 738 B | 0644 |
|
sockios.h | File | 5.83 KB | 0644 |
|
som.h | File | 5.35 KB | 0644 |
|
sonet.h | File | 2.17 KB | 0644 |
|
sonypi.h | File | 5.12 KB | 0644 |
|
sound.h | File | 1.15 KB | 0644 |
|
soundcard.h | File | 44.96 KB | 0644 |
|
stat.h | File | 1 KB | 0644 |
|
stddef.h | File | 1 B | 0644 |
|
string.h | File | 175 B | 0644 |
|
suspend_ioctls.h | File | 1.34 KB | 0644 |
|
swab.h | File | 6.36 KB | 0644 |
|
synclink.h | File | 8.71 KB | 0644 |
|
sysctl.h | File | 25.46 KB | 0644 |
|
sysinfo.h | File | 986 B | 0644 |
|
target_core_user.h | File | 3.65 KB | 0644 |
|
taskstats.h | File | 6.83 KB | 0644 |
|
tcp.h | File | 5.93 KB | 0644 |
|
tcp_metrics.h | File | 1.45 KB | 0644 |
|
telephony.h | File | 8.84 KB | 0644 |
|
termios.h | File | 443 B | 0644 |
|
time.h | File | 1.54 KB | 0644 |
|
times.h | File | 215 B | 0644 |
|
timex.h | File | 6.17 KB | 0644 |
|
tiocl.h | File | 1.63 KB | 0644 |
|
tipc.h | File | 5.44 KB | 0644 |
|
tipc_config.h | File | 14.1 KB | 0644 |
|
toshiba.h | File | 1.24 KB | 0644 |
|
tty.h | File | 1.33 KB | 0644 |
|
tty_flags.h | File | 3.66 KB | 0644 |
|
types.h | File | 1.4 KB | 0644 |
|
udf_fs_i.h | File | 634 B | 0644 |
|
udp.h | File | 1.28 KB | 0644 |
|
uhid.h | File | 2.15 KB | 0644 |
|
uinput.h | File | 5 KB | 0644 |
|
uio.h | File | 668 B | 0644 |
|
ultrasound.h | File | 4.39 KB | 0644 |
|
un.h | File | 239 B | 0644 |
|
unistd.h | File | 157 B | 0644 |
|
unix_diag.h | File | 1.1 KB | 0644 |
|
usbdevice_fs.h | File | 6.78 KB | 0644 |
|
userfaultfd.h | File | 6.59 KB | 0644 |
|
utime.h | File | 152 B | 0644 |
|
utsname.h | File | 606 B | 0644 |
|
uuid.h | File | 1.5 KB | 0644 |
|
uvcvideo.h | File | 1.6 KB | 0644 |
|
v4l2-common.h | File | 2.38 KB | 0644 |
|
v4l2-controls.h | File | 37.34 KB | 0644 |
|
v4l2-dv-timings.h | File | 25.75 KB | 0644 |
|
v4l2-mediabus.h | File | 4.55 KB | 0644 |
|
v4l2-subdev.h | File | 5.27 KB | 0644 |
|
version.h | File | 332 B | 0644 |
|
veth.h | File | 161 B | 0644 |
|
vfio.h | File | 26.54 KB | 0644 |
|
vhost.h | File | 7.13 KB | 0644 |
|
videodev2.h | File | 67.36 KB | 0644 |
|
virtio_9p.h | File | 1.99 KB | 0644 |
|
virtio_balloon.h | File | 3.71 KB | 0644 |
|
virtio_blk.h | File | 5.2 KB | 0644 |
|
virtio_config.h | File | 3.34 KB | 0644 |
|
virtio_console.h | File | 2.94 KB | 0644 |
|
virtio_gpu.h | File | 8.23 KB | 0644 |
|
virtio_ids.h | File | 2.32 KB | 0644 |
|
virtio_input.h | File | 2.45 KB | 0644 |
|
virtio_net.h | File | 9.5 KB | 0644 |
|
virtio_pci.h | File | 6.63 KB | 0644 |
|
virtio_ring.h | File | 6.18 KB | 0644 |
|
virtio_rng.h | File | 265 B | 0644 |
|
virtio_scsi.h | File | 5.13 KB | 0644 |
|
virtio_types.h | File | 2.11 KB | 0644 |
|
virtio_vsock.h | File | 3.01 KB | 0644 |
|
vm_sockets.h | File | 5.13 KB | 0644 |
|
vsockmon.h | File | 1.78 KB | 0644 |
|
vt.h | File | 2.98 KB | 0644 |
|
vtpm_proxy.h | File | 1.62 KB | 0644 |
|
wait.h | File | 600 B | 0644 |
|
wanrouter.h | File | 390 B | 0644 |
|
watchdog.h | File | 2.22 KB | 0644 |
|
wimax.h | File | 8.17 KB | 0644 |
|
wireless.h | File | 41.65 KB | 0644 |
|
wmi.h | File | 1.84 KB | 0644 |
|
x25.h | File | 3.42 KB | 0644 |
|
xattr.h | File | 2.53 KB | 0644 |
|
xfrm.h | File | 11 KB | 0644 |
|