Home
last modified time | relevance | path

Searched refs:bwend (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/openssh/
H A Dmisc.c1789 timerclear(&bw->bwend); in bandwidth_limit_init()
1807 monotime_tv(&bw->bwend); in bandwidth_limit()
1808 timersub(&bw->bwend, &bw->bwstart, &bw->bwend); in bandwidth_limit()
1809 if (!timerisset(&bw->bwend)) in bandwidth_limit()
1818 if (timercmp(&bw->bwstart, &bw->bwend, >)) { in bandwidth_limit()
1819 timersub(&bw->bwstart, &bw->bwend, &bw->bwend); in bandwidth_limit()
1822 if (bw->bwend.tv_sec) { in bandwidth_limit()
1826 } else if (bw->bwend.tv_usec < 10000) { in bandwidth_limit()
1832 TIMEVAL_TO_TIMESPEC(&bw->bwend, &ts); in bandwidth_limit()
H A Dmisc.h180 struct timeval bwstart, bwend; member