client-cpp
0.10.0
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
ConnackMessage.hpp
Go to the documentation of this file.
1
/*
2
* Copyright 2014-2016 CyberVision, Inc.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at
7
*
8
* http://www.apache.org/licenses/LICENSE-2.0
9
*
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*/
16
17
#ifndef CONNACKMESSAGE_HPP_
18
#define CONNACKMESSAGE_HPP_
19
20
#include <cstdint>
21
#include <string>
22
23
namespace
kaa {
24
25
enum class
ConnackReturnCode
: std::uint8_t
26
{
27
UNKNOWN
= 0x00,
28
ACCEPTED
= 0x01,
29
REFUSE_BAD_PROTOCOL
= 0x02,
30
REFUSE_ID_REJECT
= 0x03,
31
REFUSE_SERVER_UNAVAILABLE
= 0x04,
32
REFUSE_BAD_CREDENTIALS
= 0x05,
33
REFUSE_NO_AUTH
= 0x06,
34
REFUSE_VERIFICATION_FAILED
= 0x10,
35
};
36
37
class
ConnackMessage
38
{
39
public
:
40
ConnackMessage
(
const
char
*payload, std::uint16_t size);
41
~ConnackMessage
() { }
42
43
static
std::string
returnCodeToString
(
ConnackReturnCode
code);
44
45
std::string
getMessage
()
const
;
46
ConnackReturnCode
getReturnCode
()
const
{
return
returnCode_; }
47
48
private
:
49
void
parseMessage(
const
char
*payload, std::uint16_t size);
50
51
private
:
52
ConnackReturnCode
returnCode_;
53
};
54
55
}
56
57
58
59
#endif
/* CONNACKMESSAGE_HPP_ */
kaa::ConnackMessage::~ConnackMessage
~ConnackMessage()
Definition:
ConnackMessage.hpp:41
kaa::ConnackReturnCode::ACCEPTED
kaa::ConnackMessage::getMessage
std::string getMessage() const
kaa::ConnackMessage::ConnackMessage
ConnackMessage(const char *payload, std::uint16_t size)
kaa::ConnackReturnCode::REFUSE_NO_AUTH
kaa::ConnackReturnCode
ConnackReturnCode
Definition:
ConnackMessage.hpp:25
kaa::ConnackReturnCode::REFUSE_BAD_CREDENTIALS
kaa::ConnackReturnCode::REFUSE_VERIFICATION_FAILED
kaa::ConnackReturnCode::REFUSE_ID_REJECT
kaa::ConnackMessage::returnCodeToString
static std::string returnCodeToString(ConnackReturnCode code)
kaa::ConnackReturnCode::REFUSE_BAD_PROTOCOL
kaa::ConnackReturnCode::UNKNOWN
kaa::ConnackMessage::getReturnCode
ConnackReturnCode getReturnCode() const
Definition:
ConnackMessage.hpp:46
kaa::ConnackMessage
Definition:
ConnackMessage.hpp:37
kaa::ConnackReturnCode::REFUSE_SERVER_UNAVAILABLE
architec
Documents
kaa
client
client-multi
client-cpp
kaa
kaatcp
ConnackMessage.hpp
Generated on Mon Oct 31 2016 16:51:43 for client-cpp by
1.8.6