Home
last modified time | relevance | path

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

/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_var.h52 #define sctp_feature_on(inp, feature) (inp->sctp_features |= feature)
53 #define sctp_feature_off(inp, feature) (inp->sctp_features &= ~feature)
54 #define sctp_is_feature_on(inp, feature) ((inp->sctp_features & feature) == feature)
55 #define sctp_is_feature_off(inp, feature) ((inp->sctp_features & feature) == 0)
59 stcb->asoc.sctp_features |= feature; \
61 inp->sctp_features |= feature; \
66 stcb->asoc.sctp_features &= ~feature; \
68 inp->sctp_features &= ~feature; \
73 ((stcb->asoc.sctp_features & feature) == feature)) || \
75 ((inp->sctp_features & feature) == feature)))
[all …]
Dsctp_peeloff.c122 n_inp->sctp_features = inp->sctp_features; in sctp_do_peeloff()
228 n_inp->sctp_features = inp->sctp_features; in sctp_get_peeloff()
Dsctp_pcb.h476 uint64_t sctp_features; /* Feature flags */ member
Dsctp_structs.h1272 uint64_t sctp_features; member
Dsctp_sysctl.c514 xinpcb.features = inp->sctp_features;
Dsctputil.c1183 asoc->sctp_features = inp->sctp_features; in sctp_init_asoc()
1529 ((it->inp->sctp_features & it->pcb_features) != it->pcb_features))) { in sctp_iterator_work()
Dsctp_input.c3029 inp->sctp_features = (*inp_p)->sctp_features;