Home
last modified time | relevance | path

Searched refs:sctp_features (Results 1 – 7 of 7) sorted by relevance

/f-stack/freebsd/netinet/
H A Dsctp_var.h47 #define sctp_feature_on(inp, feature) (inp->sctp_features |= feature)
48 #define sctp_feature_off(inp, feature) (inp->sctp_features &= ~feature)
50 #define sctp_is_feature_off(inp, feature) ((inp->sctp_features & feature) == 0)
54 stcb->asoc.sctp_features |= feature; \
56 inp->sctp_features |= feature; \
61 stcb->asoc.sctp_features &= ~feature; \
63 inp->sctp_features &= ~feature; \
68 ((stcb->asoc.sctp_features & feature) == feature)) || \
70 ((inp->sctp_features & feature) == feature)))
73 ((stcb->asoc.sctp_features & feature) == 0)) || \
[all …]
H A Dsctp_peeloff.c120 n_inp->sctp_features = inp->sctp_features; in sctp_do_peeloff()
H A Dsctp_pcb.h386 uint64_t sctp_features; /* Feature flags */ member
H A Dsctp_structs.h1215 uint64_t sctp_features; member
H A Dsctp_sysctl.c407 xinpcb.features = inp->sctp_features; in sctp_sysctl_handle_assoclist()
H A Dsctputil.c1153 asoc->sctp_features = inp->sctp_features; in sctp_init_asoc()
1480 ((it->inp->sctp_features & it->pcb_features) != it->pcb_features))) { in sctp_iterator_work()
H A Dsctp_input.c2690 inp->sctp_features = (*inp_p)->sctp_features; in sctp_handle_cookie_echo()