Added specialisation-packets

This commit is contained in:
Ruakij 2021-11-22 13:52:03 +01:00
parent bbd9623256
commit f1e8069afd
2 changed files with 22 additions and 0 deletions

11
DTO/beaconPacket.hpp Normal file
View File

@ -0,0 +1,11 @@
#ifndef FDDB997A_BCD3_4056_BFEA_9FF6A548DACF
#define FDDB997A_BCD3_4056_BFEA_9FF6A548DACF
#include "./packet.hpp"
#include <string>
class BeaconPacket : Packet{
std::string SSID;
};
#endif /* FDDB997A_BCD3_4056_BFEA_9FF6A548DACF */

View File

@ -0,0 +1,11 @@
#ifndef CD2BF199_8153_4F10_A85C_50883FAD66A8
#define CD2BF199_8153_4F10_A85C_50883FAD66A8
#include "./packet.hpp"
#include <string>
class ProbeRequestPacket : Packet{
std::string requestSSID;
};
#endif /* CD2BF199_8153_4F10_A85C_50883FAD66A8 */