ROHC compression/decompression library
Data Fields

A timestamp for the ROHC library. More...

#include <rohc_time.h>

Data Fields

uint64_t sec
 
uint64_t nsec
 

Detailed Description

A timestamp for the ROHC library.

Could be easily created from struct timespec on UNIX:

struct timespec unix_ts;
...
rohc_ts.sec = unix_ts.tv_sec;
rohc_ts.nsec = unix_ts.tv_nsec;
...

Field Documentation

uint64_t rohc_ts::nsec

The nanoseconds part of the timestamp

uint64_t rohc_ts::sec

The seconds part of the timestamp


The documentation for this struct was generated from the following file: