Change Client Type

Signed-off-by: tomoaki <tomoaki@tomy-tech.com>
This commit is contained in:
tomoaki
2021-04-27 21:31:22 +09:00
parent 69b229daae
commit 60fcab2504
2 changed files with 2 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ Client::Client(bool secure)
_hasPredefTopic = false; _hasPredefTopic = false;
_holdPingRequest = false; _holdPingRequest = false;
_forwarder = nullptr; _forwarder = nullptr;
_clientType = Ctype_Regular; _clientType = Ctype_Normal;
} }
Client::~Client() Client::~Client()

View File

@@ -163,7 +163,7 @@ typedef enum
typedef enum typedef enum
{ {
Ctype_Regular = 0, Ctype_Normal = 0,
Ctype_Forwarded, Ctype_Forwarded,
Ctype_QoS_1, Ctype_QoS_1,
Ctype_Aggregated, Ctype_Aggregated,