#pragma once #include #include "../base/PacketData.hpp" namespace drp::packet::search { /** * Represent a discovery request. * Sent by someone to get information about other available machine in the network. */ class SearchPacketData : public base::PacketData { public: std::chrono::time_point timestamp; /// timestamp when the search request was sent }; }