Home | History | Annotate | Download | only in netinet

Lines Matching defs:min_wait

358 	struct timeval now, min_wait, tv;
386 timersub(&now, &tv, &min_wait);
388 min_wait = now;
389 timevalsub(&min_wait, &tv);
391 if (min_wait.tv_sec < 0 || min_wait.tv_usec < 0) {
399 min_wait.tv_sec = min_wait.tv_usec = 0;
403 sctp_log_fr(0, min_wait.tv_sec, min_wait.tv_usec, SCTP_FR_T3_MARK_TIME);
473 if (chk->sent_rcv_time.tv_sec > min_wait.tv_sec) {
485 } else if (chk->sent_rcv_time.tv_sec == min_wait.tv_sec) {
488 if (chk->sent_rcv_time.tv_usec >= min_wait.tv_usec) {