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 {
1753 } peer;
1768 enum sctp_state state;
1773 int overall_error_count;
1776 ktime_t cookie_life;
1782 unsigned long rto_initial;
1783 unsigned long rto_max;
1784 unsigned long rto_min;
1787 int max_burst;
1793 int max_retrans;
1799 __u16 pf_retrans;
1801 __u16 ps_retrans;
1804 __u16 max_init_attempts;
1807 __u16 init_retries;
1810 unsigned long max_init_timeo;
1816 unsigned long hbinterval;
1817 unsigned long probe_interval;
1819 __be16 encap_port;
1824 __u16 pathmaxrxt;
1826 __u32 flowlabel;
1827 __u8 dscp;
1830 __u8 pmtu_pending;
1835 __u32 pathmtu;
1838 __u32 param_flags;
1840 __u32 sackfreq;
1842 unsigned long sackdelay;
1844 unsigned long timeouts[SCTP_NUM_TIMEOUT_TYPES];
1845 struct timer_list timers[SCTP_NUM_TIMEOUT_TYPES];
1848 struct sctp_transport *shutdown_last_sent_to;
1851 struct sctp_transport *init_last_sent_to;
1854 int shutdown_retries;
1863 __u32 next_tsn;
1874 __u32 ctsn_ack_point;
1877 __u32 adv_peer_ack_point;
1880 __u32 highest_sacked;
1883 __u32 fast_recovery_exit;
1886 __u8 fast_recovery;
1891 __u16 unack_data;
1896 __u32 rtx_data_chunks;
1901 __u32 rwnd;
1904 __u32 a_rwnd;
1909 __u32 rwnd_over;
1915 __u32 rwnd_press;
1921 int sndbuf_used;
1926 atomic_t rmem_alloc;
1931 wait_queue_head_t wait;
1934 __u32 frag_point;
1935 __u32 user_frag;
1938 int init_err_counter;
1941 int init_cycle;
1944 __u16 default_stream;
1945 __u16 default_flags;
1946 __u32 default_ppid;
1947 __u32 default_context;
1948 __u32 default_timetolive;
1951 __u32 default_rcv_context;
1954 struct sctp_stream stream;
1957 struct sctp_outq outqueue;
1962 struct sctp_ulpq ulpq;
1965 __u32 last_ecne_tsn;
1968 __u32 last_cwr_tsn;
1971 int numduptsns;
1996 struct sctp_chunk *addip_last_asconf;
2007 struct list_head asconf_ack_list;
2037 struct list_head addip_chunk_list;
2059 __u32 addip_serial;
2060 int src_out_of_asoc_ok;
2061 union sctp_addr *asconf_addr_del_pending;
2062 struct sctp_transport *new_transport;
2068 struct list_head endpoint_shared_keys;
2073 struct sctp_auth_bytes *asoc_shared_key;
2074 struct sctp_shared_key *shkey;
2079 __u16 default_hmac_id;
2081 __u16 active_key_id;
2083 __u8 need_ecne:1, /* Need to send an ECNE Chunk? */
2084 temp:1, /* Is it a temporary association? */
2085 pf_expose:2, /* Expose pf state? */
2086 force_delay:1;
2088 __u8 strreset_enable;
2089 __u8 strreset_outstanding; /* request param count on the fly */
2091 __u32 strreset_outseq; /* Update after receiving response */
2092 __u32 strreset_inseq; /* Update after receiving request */
2093 __u32 strreset_result[2]; /* save the results of last 2 responses */
2095 struct sctp_chunk *strreset_chunk; /* save request chunk */
2097 struct sctp_priv_assoc_stats stats;
2099 int sent_cnt_removable;
2101 __u16 subscribe;
2103 __u64 abandoned_unsent[SCTP_PR_INDEX(MAX) + 1];
2104 __u64 abandoned_sent[SCTP_PR_INDEX(MAX) + 1];
2128 static inline struct sctp_association *sctp_assoc(struct sctp_ep_common *base) in sctp_assoc() argument