Lines Matching defs:sctp_association
1552 struct sctp_association { struct
1558 struct sctp_ep_common base;
1561 struct list_head asocs;
1564 sctp_assoc_t assoc_id;
1567 struct sctp_endpoint *ep;
1570 struct sctp_cookie c;
1573 struct {
1730 } peer;
1745 enum sctp_state state;
1750 int overall_error_count;
1753 ktime_t cookie_life;
1759 unsigned long rto_initial;
1760 unsigned long rto_max;
1761 unsigned long rto_min;
1764 int max_burst;
1770 int max_retrans;
1776 __u16 pf_retrans;
1778 __u16 ps_retrans;
1781 __u16 max_init_attempts;
1784 __u16 init_retries;
1787 unsigned long max_init_timeo;
1793 unsigned long hbinterval;
1798 __u16 pathmaxrxt;
1800 __u32 flowlabel;
1801 __u8 dscp;
1804 __u8 pmtu_pending;
1809 __u32 pathmtu;
1812 __u32 param_flags;
1814 __u32 sackfreq;
1816 unsigned long sackdelay;
1818 unsigned long timeouts[SCTP_NUM_TIMEOUT_TYPES];
1819 struct timer_list timers[SCTP_NUM_TIMEOUT_TYPES];
1822 struct sctp_transport *shutdown_last_sent_to;
1825 struct sctp_transport *init_last_sent_to;
1828 int shutdown_retries;
1837 __u32 next_tsn;
1848 __u32 ctsn_ack_point;
1851 __u32 adv_peer_ack_point;
1854 __u32 highest_sacked;
1857 __u32 fast_recovery_exit;
1860 __u8 fast_recovery;
1865 __u16 unack_data;
1870 __u32 rtx_data_chunks;
1875 __u32 rwnd;
1878 __u32 a_rwnd;
1883 __u32 rwnd_over;
1889 __u32 rwnd_press;
1895 int sndbuf_used;
1900 atomic_t rmem_alloc;
1905 wait_queue_head_t wait;
1908 __u32 frag_point;
1909 __u32 user_frag;
1912 int init_err_counter;
1915 int init_cycle;
1918 __u16 default_stream;
1919 __u16 default_flags;
1920 __u32 default_ppid;
1921 __u32 default_context;
1922 __u32 default_timetolive;
1925 __u32 default_rcv_context;
1928 struct sctp_stream stream;
1931 struct sctp_outq outqueue;
1936 struct sctp_ulpq ulpq;
1939 __u32 last_ecne_tsn;
1942 __u32 last_cwr_tsn;
1945 int numduptsns;
1970 struct sctp_chunk *addip_last_asconf;
1981 struct list_head asconf_ack_list;
2011 struct list_head addip_chunk_list;
2033 __u32 addip_serial;
2034 int src_out_of_asoc_ok;
2035 union sctp_addr *asconf_addr_del_pending;
2036 struct sctp_transport *new_transport;
2042 struct list_head endpoint_shared_keys;
2047 struct sctp_auth_bytes *asoc_shared_key;
2048 struct sctp_shared_key *shkey;
2053 __u16 default_hmac_id;
2055 __u16 active_key_id;
2057 __u8 need_ecne:1, /* Need to send an ECNE Chunk? */
2058 temp:1, /* Is it a temporary association? */
2059 pf_expose:2, /* Expose pf state? */
2060 force_delay:1;
2062 __u8 strreset_enable;
2063 __u8 strreset_outstanding; /* request param count on the fly */
2065 __u32 strreset_outseq; /* Update after receiving response */
2066 __u32 strreset_inseq; /* Update after receiving request */
2067 __u32 strreset_result[2]; /* save the results of last 2 responses */
2092 static inline struct sctp_association *sctp_assoc(struct sctp_ep_common *base) in sctp_assoc() argument