diff --git a/DTO/beaconPacket.hpp b/DTO/beaconPacket.hpp new file mode 100644 index 0000000..292b818 --- /dev/null +++ b/DTO/beaconPacket.hpp @@ -0,0 +1,11 @@ +#ifndef FDDB997A_BCD3_4056_BFEA_9FF6A548DACF +#define FDDB997A_BCD3_4056_BFEA_9FF6A548DACF + +#include "./packet.hpp" +#include + +class BeaconPacket : Packet{ + std::string SSID; +}; + +#endif /* FDDB997A_BCD3_4056_BFEA_9FF6A548DACF */ diff --git a/DTO/probeRequestPacket.hpp b/DTO/probeRequestPacket.hpp new file mode 100644 index 0000000..da29726 --- /dev/null +++ b/DTO/probeRequestPacket.hpp @@ -0,0 +1,11 @@ +#ifndef CD2BF199_8153_4F10_A85C_50883FAD66A8 +#define CD2BF199_8153_4F10_A85C_50883FAD66A8 + +#include "./packet.hpp" +#include + +class ProbeRequestPacket : Packet{ + std::string requestSSID; +}; + +#endif /* CD2BF199_8153_4F10_A85C_50883FAD66A8 */