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

/freebsd-13-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-13-stable/sys/netinet/
H A Dtcp_input.c387 struct hc_metrics_lite metrics; local
394 tcp_hc_get(&inp->inp_inc, &metrics);
397 if (tp->t_srtt == 0 && (rtt = metrics.rmx_rtt)) {
401 if (metrics.rmx_rttvar) {
402 tp->t_rttvar = metrics.rmx_rttvar;
413 if (metrics.rmx_ssthresh) {
420 tp->snd_ssthresh = max(2 * maxseg, metrics.rmx_ssthresh);
3693 struct hc_metrics_lite metrics; local
3734 * In case we return early we need to initialize metrics
3771 tcp_hc_get(&inp->inp_inc, &metrics);
3842 struct hc_metrics_lite metrics; local
[all...]
H A Dtcp_subr.c2369 struct hc_metrics_lite metrics; local
2372 bzero(&metrics, sizeof(metrics));
2403 metrics.rmx_ssthresh = ssthresh;
2405 metrics.rmx_rtt = tp->t_srtt;
2406 metrics.rmx_rttvar = tp->t_rttvar;
2407 metrics.rmx_cwnd = tp->snd_cwnd;
2408 metrics.rmx_sendpipe = 0;
2409 metrics.rmx_recvpipe = 0;
2411 tcp_hc_update(&inp->inp_inc, &metrics);
[all...]

Completed in 187 milliseconds