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 {
1519 } peer;
1534 sctp_state_t state;
1539 int overall_error_count;
1542 ktime_t cookie_life;
1548 unsigned long rto_initial;
1549 unsigned long rto_max;
1550 unsigned long rto_min;
1553 int max_burst;
1559 int max_retrans;
1565 int pf_retrans;
1568 __u16 max_init_attempts;
1571 __u16 init_retries;
1574 unsigned long max_init_timeo;
1580 unsigned long hbinterval;
1585 __u16 pathmaxrxt;
1588 __u8 pmtu_pending;
1593 __u32 pathmtu;
1596 __u32 param_flags;
1598 __u32 sackfreq;
1600 unsigned long sackdelay;
1602 unsigned long timeouts[SCTP_NUM_TIMEOUT_TYPES];
1603 struct timer_list timers[SCTP_NUM_TIMEOUT_TYPES];
1606 struct sctp_transport *shutdown_last_sent_to;
1609 struct sctp_transport *init_last_sent_to;
1612 int shutdown_retries;
1621 __u32 next_tsn;
1632 __u32 ctsn_ack_point;
1635 __u32 adv_peer_ack_point;
1638 __u32 highest_sacked;
1641 __u32 fast_recovery_exit;
1644 __u8 fast_recovery;
1649 __u16 unack_data;
1654 __u32 rtx_data_chunks;
1659 __u32 rwnd;
1662 __u32 a_rwnd;
1667 __u32 rwnd_over;
1673 __u32 rwnd_press;
1679 int sndbuf_used;
1684 atomic_t rmem_alloc;
1689 wait_queue_head_t wait;
1692 __u32 frag_point;
1693 __u32 user_frag;
1696 int init_err_counter;
1699 int init_cycle;
1702 __u16 default_stream;
1703 __u16 default_flags;
1704 __u32 default_ppid;
1705 __u32 default_context;
1706 __u32 default_timetolive;
1709 __u32 default_rcv_context;
1712 struct sctp_ssnmap *ssnmap;
1715 struct sctp_outq outqueue;
1720 struct sctp_ulpq ulpq;
1723 __u32 last_ecne_tsn;
1726 __u32 last_cwr_tsn;
1729 int numduptsns;
1754 struct sctp_chunk *addip_last_asconf;
1765 struct list_head asconf_ack_list;
1795 struct list_head addip_chunk_list;
1817 __u32 addip_serial;
1818 int src_out_of_asoc_ok;
1819 union sctp_addr *asconf_addr_del_pending;
1820 struct sctp_transport *new_transport;
1826 struct list_head endpoint_shared_keys;
1831 struct sctp_auth_bytes *asoc_shared_key;
1855 static inline struct sctp_association *sctp_assoc(struct sctp_ep_common *base) in sctp_assoc() argument