X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/1345c0a23da2a0dc0bbeb6a91783abef1b235fbe..bf689f8729a4f53f9425da557e0919eb9a6d795b:/stargazer/plugins/capture/divert_freebsd/divert_cap.cpp diff --git a/stargazer/plugins/capture/divert_freebsd/divert_cap.cpp b/stargazer/plugins/capture/divert_freebsd/divert_cap.cpp index 6019fa4b..eb3a9a87 100644 --- a/stargazer/plugins/capture/divert_freebsd/divert_cap.cpp +++ b/stargazer/plugins/capture/divert_freebsd/divert_cap.cpp @@ -25,8 +25,9 @@ $Date: 2010/09/10 06:43:03 $ #include "divert_cap.h" -#include "stg/common.h" #include "stg/traffcounter.h" +#include "stg/raw_ip_packet.h" +#include "stg/common.h" #include #include @@ -156,7 +157,7 @@ pthread_sigmask(SIG_BLOCK, &signalSet, NULL); DIVERT_CAP * dc = static_cast(d); dc->isRunning = true; -char buffer[pcktSize + 14]; +char buffer[packetSize + 14]; while (dc->nonstop) { STG::RawPacket rp; @@ -165,7 +166,7 @@ while (dc->nonstop) if (buffer[12] != 0x8) continue; - memcpy(rp.rawPacket.pckt, &buffer[14], pcktSize); + memcpy(rp.rawPacket, &buffer[14], packetSize); dc->traffCnt->process(rp); }