Lines Matching defs:sctp_association

1567 struct sctp_association {  struct
1573 struct sctp_ep_common base;
1576 struct list_head asocs;
1579 sctp_assoc_t assoc_id;
1582 struct sctp_endpoint *ep;
1585 struct sctp_cookie c;
1588 struct {
1745 } peer;
1760 enum sctp_state state;
1765 int overall_error_count;
1768 ktime_t cookie_life;
1774 unsigned long rto_initial;
1775 unsigned long rto_max;
1776 unsigned long rto_min;
1779 int max_burst;
1785 int max_retrans;
1791 __u16 pf_retrans;
1793 __u16 ps_retrans;
1796 __u16 max_init_attempts;
1799 __u16 init_retries;
1802 unsigned long max_init_timeo;
1808 unsigned long hbinterval;
1809 unsigned long probe_interval;
1811 __be16 encap_port;
1816 __u16 pathmaxrxt;
1818 __u32 flowlabel;
1819 __u8 dscp;
1822 __u8 pmtu_pending;
1827 __u32 pathmtu;
1830 __u32 param_flags;
1832 __u32 sackfreq;
1834 unsigned long sackdelay;
1836 unsigned long timeouts[SCTP_NUM_TIMEOUT_TYPES];
1837 struct timer_list timers[SCTP_NUM_TIMEOUT_TYPES];
1840 struct sctp_transport *shutdown_last_sent_to;
1843 struct sctp_transport *init_last_sent_to;
1846 int shutdown_retries;
1855 __u32 next_tsn;
1866 __u32 ctsn_ack_point;
1869 __u32 adv_peer_ack_point;
1872 __u32 highest_sacked;
1875 __u32 fast_recovery_exit;
1878 __u8 fast_recovery;
1883 __u16 unack_data;
1888 __u32 rtx_data_chunks;
1893 __u32 rwnd;
1896 __u32 a_rwnd;
1901 __u32 rwnd_over;
1907 __u32 rwnd_press;
1913 int sndbuf_used;
1918 atomic_t rmem_alloc;
1923 wait_queue_head_t wait;
1926 __u32 frag_point;
1927 __u32 user_frag;
1930 int init_err_counter;
1933 int init_cycle;
1936 __u16 default_stream;
1937 __u16 default_flags;
1938 __u32 default_ppid;
1939 __u32 default_context;
1940 __u32 default_timetolive;
1943 __u32 default_rcv_context;
1946 struct sctp_stream stream;
1949 struct sctp_outq outqueue;
1954 struct sctp_ulpq ulpq;
1957 __u32 last_ecne_tsn;
1960 __u32 last_cwr_tsn;
1963 int numduptsns;
1988 struct sctp_chunk *addip_last_asconf;
1999 struct list_head asconf_ack_list;
2029 struct list_head addip_chunk_list;
2051 __u32 addip_serial;
2052 int src_out_of_asoc_ok;
2053 union sctp_addr *asconf_addr_del_pending;
2054 struct sctp_transport *new_transport;
2060 struct list_head endpoint_shared_keys;
2065 struct sctp_auth_bytes *asoc_shared_key;
2066 struct sctp_shared_key *shkey;
2071 __u16 default_hmac_id;
2073 __u16 active_key_id;
2075 __u8 need_ecne:1, /* Need to send an ECNE Chunk? */
2076 temp:1, /* Is it a temporary association? */
2077 pf_expose:2, /* Expose pf state? */
2078 force_delay:1;
2080 __u8 strreset_enable;
2081 __u8 strreset_outstanding; /* request param count on the fly */
2083 __u32 strreset_outseq; /* Update after receiving response */
2084 __u32 strreset_inseq; /* Update after receiving request */
2085 __u32 strreset_result[2]; /* save the results of last 2 responses */
2087 struct sctp_chunk *strreset_chunk; /* save request chunk */
2089 struct sctp_priv_assoc_stats stats;
2091 int sent_cnt_removable;
2093 __u16 subscribe;
2095 __u64 abandoned_unsent[SCTP_PR_INDEX(MAX) + 1];
2096 __u64 abandoned_sent[SCTP_PR_INDEX(MAX) + 1];
2120 static inline struct sctp_association *sctp_assoc(struct sctp_ep_common *base) in sctp_assoc() argument