Home
last modified time | relevance | path

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

/netbsd/src/sys/netinet/
Ddccp_usrreq.c1261 if (dp->featlen && (optlen + dp->featlen < DCCP_MAX_OPTIONS)) { in dccp_output()
1262 DCCP_DEBUG((LOG_INFO, "Copying options from dp->features! %u\n", dp->featlen)); in dccp_output()
1263 memcpy(options + optlen, dp->features, dp->featlen); in dccp_output()
1264 optlen += dp->featlen; in dccp_output()
2327 if (DCCP_MAX_OPTIONS > (dp->featlen + val_len + 3)) { in dccp_add_feature()
2328 dp->features[dp->featlen] = opt; in dccp_add_feature()
2329 dp->features[dp->featlen + 1] = val_len + 3; in dccp_add_feature()
2330 dp->features[dp->featlen +2] = feature; in dccp_add_feature()
2331 dp->featlen += 3; in dccp_add_feature()
2333 dp->features[dp->featlen] = val[i]; in dccp_add_feature()
[all …]
Ddccp_var.h103 u_int8_t featlen; member