refactor: rename packet_parse.cpp/h to packet_parser.cpp/h

This commit is contained in:
luwenpeng
2024-08-16 11:49:54 +08:00
parent d2de4bd328
commit ebf1dad62c
33 changed files with 34 additions and 34 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#ifdef __cplusplus
extern "C"
{
#endif
#include <stdint.h>
const char *packet_parse(struct packet *pkt, const char *data, uint16_t len);
const char *layer_proto_to_str(enum layer_proto proto);
#ifdef __cplusplus
}
#endif