Lines Matching defs:sctp_association
1578 struct sctp_association { struct
1584 struct sctp_ep_common base;
1587 struct list_head asocs;
1590 sctp_assoc_t assoc_id;
1593 struct sctp_endpoint *ep;
1596 struct sctp_cookie c;
1599 struct {
1756 } peer;
1771 enum sctp_state state;
1776 int overall_error_count;
1779 ktime_t cookie_life;
1785 unsigned long rto_initial;
1786 unsigned long rto_max;
1787 unsigned long rto_min;
1790 int max_burst;
1796 int max_retrans;
1802 __u16 pf_retrans;
1804 __u16 ps_retrans;
1807 __u16 max_init_attempts;
1810 __u16 init_retries;
1813 unsigned long max_init_timeo;
1819 unsigned long hbinterval;
1820 unsigned long probe_interval;
1822 __be16 encap_port;
1827 __u16 pathmaxrxt;
1829 __u32 flowlabel;
1830 __u8 dscp;
1833 __u8 pmtu_pending;
1838 __u32 pathmtu;
1841 __u32 param_flags;
1843 __u32 sackfreq;
1845 unsigned long sackdelay;
1847 unsigned long timeouts[SCTP_NUM_TIMEOUT_TYPES];
1848 struct timer_list timers[SCTP_NUM_TIMEOUT_TYPES];
1851 struct sctp_transport *shutdown_last_sent_to;
1854 struct sctp_transport *init_last_sent_to;
1857 int shutdown_retries;
1866 __u32 next_tsn;
1877 __u32 ctsn_ack_point;
1880 __u32 adv_peer_ack_point;
1883 __u32 highest_sacked;
1886 __u32 fast_recovery_exit;
1889 __u8 fast_recovery;
1894 __u16 unack_data;
1899 __u32 rtx_data_chunks;
1904 __u32 rwnd;
1907 __u32 a_rwnd;
1912 __u32 rwnd_over;
1918 __u32 rwnd_press;
1924 int sndbuf_used;
1929 atomic_t rmem_alloc;
1934 wait_queue_head_t wait;
1937 __u32 frag_point;
1938 __u32 user_frag;
1941 int init_err_counter;
1944 int init_cycle;
1947 __u16 default_stream;
1948 __u16 default_flags;
1949 __u32 default_ppid;
1950 __u32 default_context;
1951 __u32 default_timetolive;
1954 __u32 default_rcv_context;
1957 struct sctp_stream stream;
1960 struct sctp_outq outqueue;
1965 struct sctp_ulpq ulpq;
1968 __u32 last_ecne_tsn;
1971 __u32 last_cwr_tsn;
1974 int numduptsns;
1999 struct sctp_chunk *addip_last_asconf;
2010 struct list_head asconf_ack_list;
2040 struct list_head addip_chunk_list;
2062 __u32 addip_serial;
2063 int src_out_of_asoc_ok;
2064 union sctp_addr *asconf_addr_del_pending;
2065 struct sctp_transport *new_transport;
2071 struct list_head endpoint_shared_keys;
2076 struct sctp_auth_bytes *asoc_shared_key;
2077 struct sctp_shared_key *shkey;
2082 __u16 default_hmac_id;
2084 __u16 active_key_id;
2086 __u8 need_ecne:1, /* Need to send an ECNE Chunk? */
2087 temp:1, /* Is it a temporary association? */
2088 pf_expose:2, /* Expose pf state? */
2089 force_delay:1;
2091 __u8 strreset_enable;
2092 __u8 strreset_outstanding; /* request param count on the fly */
2094 __u32 strreset_outseq; /* Update after receiving response */
2095 __u32 strreset_inseq; /* Update after receiving request */
2096 __u32 strreset_result[2]; /* save the results of last 2 responses */
2121 static inline struct sctp_association *sctp_assoc(struct sctp_ep_common *base) in sctp_assoc() argument