Home | History | Annotate | Download | only in netinet

Lines Matching refs:feature

1204 		DCCP_DEBUG((LOG_INFO, "Still in feature neg, sending DCCP TYPE_ACK!\n"));
2151 dccp_add_feature_option(struct dccpcb *dp, u_int8_t opt, u_int8_t feature, char *val, u_int8_t val_len)
2163 dp->options[dp->optlen +2] = feature;
2247 /* Feature negotiations are options 33 to 35 */
2248 DCCP_DEBUG((LOG_INFO, "Got option %u, size = %u, feature = %u\n", opt, size, options[i+2]));
2322 dccp_add_feature(struct dccpcb *dp, u_int8_t opt, u_int8_t feature, char *val, u_int8_t val_len)
2325 DCCP_DEBUG((LOG_INFO, "Entering dccp_add_feature, opt = %u, feature = %u, val_len = %u\n", opt, feature, val_len));
2330 dp->features[dp->featlen +2] = feature;
2345 dccp_remove_feature(struct dccpcb *dp, u_int8_t opt, u_int8_t feature)
2349 DCCP_DEBUG((LOG_INFO, "Entering dccp_remove_feature, featlen = %u, opt = %u, feature = %u\n", dp->featlen, opt, feature));
2361 if (t_opt == opt && t_feature == feature) {
2379 dccp_feature_neg(struct dccpcb *dp, u_int8_t opt, u_int8_t feature, u_int8_t val_len, char *val)
2381 DCCP_DEBUG((LOG_INFO, "Running dccp_feature_neg, opt = %u, feature = %u len = %u ", opt, feature, val_len));
2383 switch (feature) {
2439 ACK_DEBUG((LOG_INFO, "Feature: Change Ack Ratio to %u\n", dp->ack_ratio));
2446 /* we should send back empty CONFIRM_L for unknown feature unless it's not mandatory */
3092 SYSCTL_DESCR("enable feature negotiation"),