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

/freebsd-10-stable/sys/netinet/
H A Dtcp_input.c325 struct hc_metrics_lite metrics; local
331 tcp_hc_get(&inp->inp_inc, &metrics);
333 if (tp->t_srtt == 0 && (rtt = metrics.rmx_rtt)) {
337 if (metrics.rmx_rttvar) {
338 tp->t_rttvar = metrics.rmx_rttvar;
349 if (metrics.rmx_ssthresh) {
356 tp->snd_ssthresh = max(2 * tp->t_maxseg, metrics.rmx_ssthresh);
3578 struct hc_metrics_lite metrics; local
3619 * In case we return early we need to initialize metrics
3656 tcp_hc_get(&inp->inp_inc, &metrics);
3743 struct hc_metrics_lite metrics; local
[all...]
H A Dtcp_subr.c1059 struct hc_metrics_lite metrics; local
1062 bzero(&metrics, sizeof(metrics));
1093 metrics.rmx_ssthresh = ssthresh;
1095 metrics.rmx_rtt = tp->t_srtt;
1096 metrics.rmx_rttvar = tp->t_rttvar;
1097 metrics.rmx_cwnd = tp->snd_cwnd;
1098 metrics.rmx_sendpipe = 0;
1099 metrics.rmx_recvpipe = 0;
1101 tcp_hc_update(&inp->inp_inc, &metrics);
[all...]
/freebsd-10-stable/contrib/tcpdump/
H A Dospf.h161 struct tos_metric metrics; member in union:un_tos
H A Dprint-ospf.c531 * Print all the per-topology metrics.
548 metric_count ? tos->metrics.tos_type : 0),
549 metric_count ? tos->metrics.tos_type : 0,
550 EXTRACT_16BITS(&tos->metrics.tos_metric));

Completed in 117 milliseconds