Searched refs:featlen (Results 1 – 2 of 2) sorted by relevance
1261 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 …]
103 u_int8_t featlen; member