Home | History | Annotate | Download | only in libpcap

Lines Matching refs:expiry

209   struct timeval     now, expiry;
216 expiry.tv_usec = now.tv_usec + 1000UL * p->inter_packet_wait;
217 expiry.tv_sec = now.tv_sec;
218 while (expiry.tv_usec >= 1000000L)
220 expiry.tv_usec -= 1000000L;
221 expiry.tv_sec++;
293 if (timercmp(&now, &expiry, >))