Home
last modified time | relevance | path

Searched refs:_stcb (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/netinet/
H A Dsctp_var.h99 #define sctp_free_a_readq(_stcb, _readq) { \ argument
101 panic("On strm q stcb:%p readq:%p", (_stcb), (_readq)); \
106 #define sctp_free_a_readq(_stcb, _readq) { \ argument
112 #define sctp_alloc_a_readq(_stcb, _readq) { \ argument
119 #define sctp_free_a_strmoq(_stcb, _strmoq, _so_locked) { \ argument
128 #define sctp_alloc_a_strmoq(_stcb, _strmoq) { \ argument
137 #define sctp_free_a_chunk(_stcb, _chk, _so_locked) { \ argument
139 sctp_auth_key_release((_stcb), (_chk)->auth_keyid, _so_locked); \
142 if (_stcb) { \
143 SCTP_TCB_LOCK_ASSERT((_stcb)); \
[all …]
H A Dsctp_constants.h464 #define SCTP_GET_STATE(_stcb) \ argument
465 ((_stcb)->asoc.state & SCTP_STATE_MASK)
466 #define SCTP_SET_STATE(_stcb, _state) \ argument
467 sctp_set_state(_stcb, _state)
468 #define SCTP_CLEAR_SUBSTATE(_stcb, _substate) \ argument
469 (_stcb)->asoc.state &= ~(_substate)
470 #define SCTP_ADD_SUBSTATE(_stcb, _substate) \ argument
471 sctp_add_substate(_stcb, _substate)