A timestamp for the ROHC library. More...
#include <rohc_time.h>
Data Fields | |
| uint64_t | sec |
| uint64_t | nsec |
A timestamp for the ROHC library.
Could be easily created from struct timespec on UNIX:
struct rohc_ts rohc_ts; struct timespec unix_ts; ... rohc_ts.sec = unix_ts.tv_sec; rohc_ts.nsec = unix_ts.tv_nsec; ...
| uint64_t rohc_ts::nsec |
The nanoseconds part of the timestamp
| uint64_t rohc_ts::sec |
The seconds part of the timestamp
1.6.1