PcapPlusPlus  24.09
TimespecTimeval.h
1 #pragma once
4 
5 #ifndef TIMEVAL_TO_TIMESPEC
6 # define TIMEVAL_TO_TIMESPEC(tv, ts) \
7  { \
8  (ts)->tv_sec = (tv)->tv_sec; \
9  (ts)->tv_nsec = (tv)->tv_usec * 1000; \
10  }
11 #endif
12 
13 #ifndef TIMESPEC_TO_TIMEVAL
14 # define TIMESPEC_TO_TIMEVAL(tv, ts) \
15  { \
16  (tv)->tv_sec = (ts)->tv_sec; \
17  (tv)->tv_usec = (ts)->tv_nsec / 1000; \
18  }
19 #endif