13 lines
261 B
C++
13 lines
261 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 = sp::FieldsBuilder<std::uint64_t>::Type;
|
|
|
|
DeclarePacket(KeepAlive); |