client-cpp  0.7.0
ConnackMessage.hpp
Go to the documentation of this file.
1 /*
2  * Copyright 2014 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  SUCCESS = 0x01,
29  UNACCEPTABLE_VERSION = 0x02,
30  IDENTIFIER_REJECTED = 0x03,
31  SERVER_UNAVAILABLE = 0x04,
32  BAD_USER_PASSWORD = 0x05,
33  NOT_AUTHORIZED = 0x06
34 };
35 
37 {
38 public:
39  ConnackMessage(const char *payload, std::uint16_t size);
41 
42  static std::string returnCodeToString(ConnackReturnCode code);
43 
44  std::string getMessage() const;
45  ConnackReturnCode getReturnCode() const { return returnCode_; }
46 
47 private:
48  void parseMessage(const char *payload, std::uint16_t size);
49 
50 private:
51  ConnackReturnCode returnCode_;
52 };
53 
54 }
55 
56 
57 
58 #endif /* CONNACKMESSAGE_HPP_ */
std::string getMessage() const
ConnackMessage(const char *payload, std::uint16_t size)
ConnackReturnCode
static std::string returnCodeToString(ConnackReturnCode code)
ConnackReturnCode getReturnCode() const