Lines Matching defs:sctp_association

1344 struct sctp_association {  struct
1350 struct sctp_ep_common base;
1353 struct list_head asocs;
1356 sctp_assoc_t assoc_id;
1359 struct sctp_endpoint *ep;
1362 struct sctp_cookie c;
1365 struct {
1518 } peer;
1533 sctp_state_t state;
1538 int overall_error_count;
1541 ktime_t cookie_life;
1547 unsigned long rto_initial;
1548 unsigned long rto_max;
1549 unsigned long rto_min;
1552 int max_burst;
1558 int max_retrans;
1564 int pf_retrans;
1567 __u16 max_init_attempts;
1570 __u16 init_retries;
1573 unsigned long max_init_timeo;
1579 unsigned long hbinterval;
1584 __u16 pathmaxrxt;
1587 __u8 pmtu_pending;
1592 __u32 pathmtu;
1595 __u32 param_flags;
1597 __u32 sackfreq;
1599 unsigned long sackdelay;
1601 unsigned long timeouts[SCTP_NUM_TIMEOUT_TYPES];
1602 struct timer_list timers[SCTP_NUM_TIMEOUT_TYPES];
1605 struct sctp_transport *shutdown_last_sent_to;
1608 struct sctp_transport *init_last_sent_to;
1611 int shutdown_retries;
1620 __u32 next_tsn;
1631 __u32 ctsn_ack_point;
1634 __u32 adv_peer_ack_point;
1637 __u32 highest_sacked;
1640 __u32 fast_recovery_exit;
1643 __u8 fast_recovery;
1648 __u16 unack_data;
1653 __u32 rtx_data_chunks;
1658 __u32 rwnd;
1661 __u32 a_rwnd;
1666 __u32 rwnd_over;
1672 __u32 rwnd_press;
1678 int sndbuf_used;
1683 atomic_t rmem_alloc;
1688 wait_queue_head_t wait;
1691 __u32 frag_point;
1692 __u32 user_frag;
1695 int init_err_counter;
1698 int init_cycle;
1701 __u16 default_stream;
1702 __u16 default_flags;
1703 __u32 default_ppid;
1704 __u32 default_context;
1705 __u32 default_timetolive;
1708 __u32 default_rcv_context;
1711 struct sctp_ssnmap *ssnmap;
1714 struct sctp_outq outqueue;
1719 struct sctp_ulpq ulpq;
1722 __u32 last_ecne_tsn;
1725 __u32 last_cwr_tsn;
1728 int numduptsns;
1753 struct sctp_chunk *addip_last_asconf;
1764 struct list_head asconf_ack_list;
1794 struct list_head addip_chunk_list;
1816 __u32 addip_serial;
1817 int src_out_of_asoc_ok;
1818 union sctp_addr *asconf_addr_del_pending;
1819 struct sctp_transport *new_transport;
1825 struct list_head endpoint_shared_keys;
1830 struct sctp_auth_bytes *asoc_shared_key;
1854 static inline struct sctp_association *sctp_assoc(struct sctp_ep_common *base) in sctp_assoc() argument