-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathacksender.h
More file actions
38 lines (30 loc) · 968 Bytes
/
acksender.h
File metadata and controls
38 lines (30 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
This file is part of FlashMQ (https://www.flashmq.org)
Copyright (C) 2021-2023 Wiebe Cazemier
FlashMQ is free software: you can redistribute it and/or modify
it under the terms of The Open Software License 3.0 (OSL-3.0).
See LICENSE for license details.
*/
#ifndef ACKSENDER_H
#define ACKSENDER_H
#include <stdint.h>
#include "types.h"
class AckSender
{
uint8_t qos {};
uint16_t packetId {};
ProtocolVersion protocolVersion = ProtocolVersion::None;
ReasonCodes ackCode = ReasonCodes::Success;
bool sent = false;
public:
AckSender(const AckSender &other) = delete;
AckSender(AckSender &&other) = delete;
AckSender() = delete;
AckSender &operator=(const AckSender&) = delete;
AckSender &operator=(AckSender&&) = delete;
AckSender(uint8_t qos, uint16_t packetId, ProtocolVersion protocolVersion);
~AckSender();
void sendNow(Client *client);
void setAckCode(ReasonCodes ackCode);
};
#endif // ACKSENDER_H