Lines Matching defs:sctp_association
1576 struct sctp_association { struct
1582 struct sctp_ep_common base;
1585 struct list_head asocs;
1588 sctp_assoc_t assoc_id;
1591 struct sctp_endpoint *ep;
1594 struct sctp_cookie c;
1597 struct {
1754 } peer;
1769 enum sctp_state state;
1774 int overall_error_count;
1777 ktime_t cookie_life;
1783 unsigned long rto_initial;
1784 unsigned long rto_max;
1785 unsigned long rto_min;
1788 int max_burst;
1794 int max_retrans;
1800 __u16 pf_retrans;
1802 __u16 ps_retrans;
1805 __u16 max_init_attempts;
1808 __u16 init_retries;
1811 unsigned long max_init_timeo;
1817 unsigned long hbinterval;
1818 unsigned long probe_interval;
1820 __be16 encap_port;
1825 __u16 pathmaxrxt;
1827 __u32 flowlabel;
1828 __u8 dscp;
1831 __u8 pmtu_pending;
1836 __u32 pathmtu;
1839 __u32 param_flags;
1841 __u32 sackfreq;
1843 unsigned long sackdelay;
1845 unsigned long timeouts[SCTP_NUM_TIMEOUT_TYPES];
1846 struct timer_list timers[SCTP_NUM_TIMEOUT_TYPES];
1849 struct sctp_transport *shutdown_last_sent_to;
1852 struct sctp_transport *init_last_sent_to;
1855 int shutdown_retries;
1864 __u32 next_tsn;
1875 __u32 ctsn_ack_point;
1878 __u32 adv_peer_ack_point;
1881 __u32 highest_sacked;
1884 __u32 fast_recovery_exit;
1887 __u8 fast_recovery;
1892 __u16 unack_data;
1897 __u32 rtx_data_chunks;
1902 __u32 rwnd;
1905 __u32 a_rwnd;
1910 __u32 rwnd_over;
1916 __u32 rwnd_press;
1922 int sndbuf_used;
1927 atomic_t rmem_alloc;
1932 wait_queue_head_t wait;
1935 __u32 frag_point;
1936 __u32 user_frag;
1939 int init_err_counter;
1942 int init_cycle;
1945 __u16 default_stream;
1946 __u16 default_flags;
1947 __u32 default_ppid;
1948 __u32 default_context;
1949 __u32 default_timetolive;
1952 __u32 default_rcv_context;
1955 struct sctp_stream stream;
1958 struct sctp_outq outqueue;
1963 struct sctp_ulpq ulpq;
1966 __u32 last_ecne_tsn;
1969 __u32 last_cwr_tsn;
1972 int numduptsns;
1997 struct sctp_chunk *addip_last_asconf;
2008 struct list_head asconf_ack_list;
2038 struct list_head addip_chunk_list;
2060 __u32 addip_serial;
2061 int src_out_of_asoc_ok;
2062 union sctp_addr *asconf_addr_del_pending;
2063 struct sctp_transport *new_transport;
2069 struct list_head endpoint_shared_keys;
2074 struct sctp_auth_bytes *asoc_shared_key;
2075 struct sctp_shared_key *shkey;
2080 __u16 default_hmac_id;
2082 __u16 active_key_id;
2084 __u8 need_ecne:1, /* Need to send an ECNE Chunk? */
2085 temp:1, /* Is it a temporary association? */
2086 pf_expose:2, /* Expose pf state? */
2087 force_delay:1;
2089 __u8 strreset_enable;
2090 __u8 strreset_outstanding; /* request param count on the fly */
2092 __u32 strreset_outseq; /* Update after receiving response */
2093 __u32 strreset_inseq; /* Update after receiving request */
2094 __u32 strreset_result[2]; /* save the results of last 2 responses */
2119 static inline struct sctp_association *sctp_assoc(struct sctp_ep_common *base) in sctp_assoc() argument