iperf3-tls/src/timer.h
2009-02-24 06:22:58 +00:00

9 lines
188 B
C

struct timer {
struct timeval begin;
struct timeval end;
int (*expired)(struct timer *timer);
};
struct timer *new_timer(time_t sec, suseconds_t usec);
int delay(int64_t ns);