Change packet-macs to string

This commit is contained in:
Ruakij 2021-11-22 11:53:31 +01:00
parent c5bc468ab9
commit 9755e86a98

View File

@ -1,13 +1,13 @@
#ifndef C42FA9F6_8CF3_453F_8FA0_918E543DCD59 #ifndef C42FA9F6_8CF3_453F_8FA0_918E543DCD59
#define C42FA9F6_8CF3_453F_8FA0_918E543DCD59 #define C42FA9F6_8CF3_453F_8FA0_918E543DCD59
#include <time.h> #include <string>
struct Packet { struct Packet {
uint64_t timestampMicros; uint64_t timestampMicros;
char srcMac[17]; std::string srcMac;
char dstMac[17]; std::string dstMac;
unsigned int size; unsigned int size;