blob: 1d8ba84393f18458f1d98823922708ce5f0fdb39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _PACKET_STAT_H
#define _PACKET_STAT_H
#ifdef __cpluscplus
extern "C"
{
#endif
struct packet_stat;
struct packet_stat *packet_stat_create(const char *profile);
void packet_stat_destory(struct packet_stat *handle);
void packet_stat_flush(struct packet_stat *handle, struct metrics *metrics);
#ifdef __cpluscplus
}
#endif
#endif
|