18 lines
222 B
C
18 lines
222 B
C
#ifndef _PACKET_HANDLE_H
|
|
#define _PACKET_HANDLE_H
|
|
|
|
#ifdef __cpluscplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include "utils.h"
|
|
|
|
void packet_handle(const char *data, int len, struct metrics *metrics);
|
|
|
|
#ifdef __cpluscplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|