Files
Simple-Protocol-Lib/include/examples/KeepAlivePacket.h
2025-02-06 18:30:35 +01:00

13 lines
264 B
C++

#pragma once
#include <sp/default/DefaultPacket.h>
#include <sp/protocol/Field.h>
#include <sp/protocol/MessageBase.h>
enum KeepAlivePacketFields {
KeepAliveId = 0
};
using KeepAliveFields = std::tuple<std::uint64_t /*KeepAliveId*/>;
DeclarePacket(KeepAlive);