SOLA
Loading...
Searching...
No Matches
signoff_parent_request.h
1// Copyright The SOLA Contributors
2//
3// Licensed under the MIT License.
4// For details on the licensing terms, see the LICENSE file.
5// SPDX-License-Identifier: MIT
6
7#ifndef MINHTON_MESSAGE_SIGNOFF_PARENT_REQUEST_H_
8#define MINHTON_MESSAGE_SIGNOFF_PARENT_REQUEST_H_
9
10#include "minhton/message/message.h"
11#include "solanet/serializer/serialize.h"
12
13namespace minhton {
18class MessageSignoffParentRequest : public MinhtonMessage<MessageSignoffParentRequest> {
19public:
21
22 SERIALIZE(header_);
23
25
26private:
27 friend MinhtonMessage;
28
31
33 bool validateImpl() const;
34};
35} // namespace minhton
36
37#endif
Usage: The last node of the network, the chosen successor, sends a MessageSignoffParentRequest to its...
Definition signoff_parent_request.h:18
Definition message_header.h:24
Definition message.h:28
Definition minhton_watchdog_ns3.cpp:24