Searched refs:metrics (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/tcpdump/
H A Dospf.h162 struct tos_metric metrics; member in union:un_tos
H A Dprint-ospf.c578 * Print all the per-topology metrics.
597 metric_count ? tos->metrics.tos_type : 0),
598 metric_count ? tos->metrics.tos_type : 0,
599 EXTRACT_16BITS(&tos->metrics.tos_metric)));
/freebsd-11-stable/sys/netinet/
H A Dtcp_input.c334 struct hc_metrics_lite metrics; local
341 tcp_hc_get(&inp->inp_inc, &metrics);
344 if (tp->t_srtt == 0 && (rtt = metrics.rmx_rtt)) {
348 if (metrics.rmx_rttvar) {
349 tp->t_rttvar = metrics.rmx_rttvar;
360 if (metrics.rmx_ssthresh) {
367 tp->snd_ssthresh = max(2 * maxseg, metrics.rmx_ssthresh);
3634 struct hc_metrics_lite metrics; local
3673 * In case we return early we need to initialize metrics
3710 tcp_hc_get(&inp->inp_inc, &metrics);
3781 struct hc_metrics_lite metrics; local
[all...]
H A Dtcp_subr.c1411 struct hc_metrics_lite metrics; local
1414 bzero(&metrics, sizeof(metrics));
1445 metrics.rmx_ssthresh = ssthresh;
1447 metrics.rmx_rtt = tp->t_srtt;
1448 metrics.rmx_rttvar = tp->t_rttvar;
1449 metrics.rmx_cwnd = tp->snd_cwnd;
1450 metrics.rmx_sendpipe = 0;
1451 metrics.rmx_recvpipe = 0;
1453 tcp_hc_update(&inp->inp_inc, &metrics);
[all...]

Completed in 109 milliseconds