flexPTP-basic/stats.h

14 lines
345 B
C

#ifndef FLEXPTP_STATS_H_
#define FLEXPTP_STATS_H_
#include <stdint.h>
#include <stdbool.h>
#include "ptp_types.h"
void ptp_clear_stats(); // clear statistics
const PtpStats *ptp_get_stats(); // get statistics
void ptp_collect_stats(int64_t d); // collect statistics
#endif /* FLEXPTP_STATS_H_ */