Home | History | Annotate | Download | only in netinet

Lines Matching refs:SCTP_STATE_MASK

518 #define SCTP_STATE_MASK			0x007f
520 #define SCTP_GET_STATE(asoc) ((asoc)->state & SCTP_STATE_MASK)
521 #define SCTP_SET_STATE(asoc, newstate) ((asoc)->state = ((asoc)->state & ~SCTP_STATE_MASK) | newstate)