 |
PcapPlusPlus
24.09
|
5 #ifndef TIMEVAL_TO_TIMESPEC
6 # define TIMEVAL_TO_TIMESPEC(tv, ts) \
8 (ts)->tv_sec = (tv)->tv_sec; \
9 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
13 #ifndef TIMESPEC_TO_TIMEVAL
14 # define TIMESPEC_TO_TIMEVAL(tv, ts) \
16 (tv)->tv_sec = (ts)->tv_sec; \
17 (tv)->tv_usec = (ts)->tv_nsec / 1000; \