From 9755e86a988aa86f097ef22285cbe0730ea828e1 Mon Sep 17 00:00:00 2001 From: Ruakij Date: Mon, 22 Nov 2021 11:53:31 +0100 Subject: [PATCH] Change packet-macs to string --- DTO/packet.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DTO/packet.hpp b/DTO/packet.hpp index 83dadaa..2fd932a 100644 --- a/DTO/packet.hpp +++ b/DTO/packet.hpp @@ -1,13 +1,13 @@ #ifndef C42FA9F6_8CF3_453F_8FA0_918E543DCD59 #define C42FA9F6_8CF3_453F_8FA0_918E543DCD59 -#include +#include struct Packet { uint64_t timestampMicros; - char srcMac[17]; - char dstMac[17]; + std::string srcMac; + std::string dstMac; unsigned int size;