/freebsd/contrib/unbound/util/ |
H A D | rtt.c | 56 int rto = rtt->srtt + 4*rtt->rttvar; in calc_rto() local 57 if(rto < RTT_MIN_TIMEOUT) in calc_rto() 58 rto = RTT_MIN_TIMEOUT; in calc_rto() 59 if(rto > RTT_MAX_TIMEOUT) in calc_rto() 60 rto = RTT_MAX_TIMEOUT; in calc_rto() 61 return rto; in calc_rto() 69 rtt->rto = calc_rto(rtt); in rtt_init() 77 return rtt->rto; in rtt_timeout() 83 if(calc_rto(rtt) != rtt->rto) { in rtt_unclamped() 85 return rtt->rto; in rtt_unclamped() [all …]
|
H A D | rtt.h | 55 int rto; member
|
/freebsd/cddl/lib/libdtrace/ |
H A D | siftr.d | 62 uint32_t rto; member 99 rto = p == NULL ? 0 : p->rto;
|
/freebsd/contrib/unbound/services/cache/ |
H A D | infra.c | 558 int old = ((struct infra_data*)e->data)->rtt.rto; in infra_host() 573 ((struct infra_data*)e->data)->rtt.rto in infra_host() 668 if(data->rtt.rto >= RTT_MAX_TIMEOUT) in infra_update_tcp_works() 671 data->rtt.rto = STILL_USEFUL_TIMEOUT; in infra_update_tcp_works() 684 int rto = 1; in infra_rtt_update() local 701 data->rtt.rto = orig_rtt; in infra_rtt_update() 729 if(data->rtt.rto > 0) in infra_rtt_update() 730 rto = data->rtt.rto; in infra_rtt_update() 735 return rto; in infra_rtt_update() 807 if(host->rtt.rto >= PROBE_MAXRTO && timenow >= host->probedelay in infra_get_lame_rtt() [all …]
|
/freebsd/contrib/unbound/daemon/ |
H A D | cachedump.c | 732 int lame, dlame, rlame, rto, edns_vs, to, delay, in print_dp_details() local 750 if(entry_ttl == -2 && ri.rto >= USEFUL_SERVER_TOP_TIMEOUT) { in print_dp_details() 752 "tAAAA %d tother %d.\n", ri.rto, tA, tAAAA, in print_dp_details() 767 LDNS_RR_TYPE_A, &lame, &dlame, &rlame, &rto, in print_dp_details() 777 rlame?"NoAuthButRecursive ":"", rto, entry_ttl, in print_dp_details()
|
H A D | remote.c | 2698 if(d->rtt.rto >= USEFUL_SERVER_TOP_TIMEOUT) { in dump_infra_host() 2700 name, d->rtt.rto)) { in dump_infra_host() 2711 d->rtt.srtt, d->rtt.rttvar, rtt_notimeout(&d->rtt), d->rtt.rto, in dump_infra_host()
|
/freebsd/contrib/wpa/src/eap_server/ |
H A D | eap_server.c | 1434 int rto, i; in eap_sm_calculateTimeout() local 1471 rto = 3; in eap_sm_calculateTimeout() 1473 rto *= 2; in eap_sm_calculateTimeout() 1474 if (rto >= 20) { in eap_sm_calculateTimeout() 1475 rto = 20; in eap_sm_calculateTimeout() 1482 rto, retransCount); in eap_sm_calculateTimeout() 1484 return rto; in eap_sm_calculateTimeout()
|
/freebsd/sys/netinet/ |
H A D | siftr.c | 197 uint32_t rto; member 432 pkt_node->rto, in siftr_process_pkt() 690 pn->rto = tp->t_rxtcur * tick; in siftr_siftdata()
|
H A D | sctp_uio.h | 923 struct sctp_rto_log rto; member 1223 uint32_t rto; /* sctpAssocLocalRemEntry 5 */ member
|
H A D | sctp_sysctl.c | 528 xraddr.rto = net->RTO; in sctp_sysctl_handle_assoclist()
|
H A D | sctputil.c | 125 sctp_clog.x.rto.net = (void *)net; in rto_logging() 126 sctp_clog.x.rto.rtt = net->rtt / 1000; in rto_logging()
|
/freebsd/crypto/openssl/apps/ |
H A D | cms.c | 1356 STACK_OF(GENERAL_NAMES) *rto, *rlist; in receipt_request_print() 1373 &rlist, &rto); in receipt_request_print() 1390 gnames_stack_print(rto); in receipt_request_print()
|
/freebsd/contrib/unbound/doc/ |
H A D | Changelog | 8206 - Fix in infra cache that could cause rto larger than TOP_TIMEOUT kept. 11681 unresponsive. This is defined as a host with the maximum rto value. 11683 The rto value will time out after host-ttl seconds from the cache.
|