BugFix Adapters

PINGREQ and PINGRESP
Add Error message when the Aggregate GW receives PUBLISH from the
broker.

Signed-off-by: tomoaki <tomoaki@tomy-tech.com>
This commit is contained in:
tomoaki
2020-02-07 18:21:48 +09:00
parent 6e3c53ec83
commit 1715d5d47c
13 changed files with 47 additions and 27 deletions

View File

@@ -101,12 +101,18 @@ Client* AdapterManager::getClient(Client& client)
_qosm1Proxy->resetPingTimer(secure);
}
else if ( client.isAggregated() )
{
newClient = _aggregater->getAdapterClient(&client);
_aggregater->resetPingTimer(secure);
}
else if ( client.isQoSm1Proxy() )
{
_qosm1Proxy->resetPingTimer(secure);
}
else if ( client.isAggregater() )
{
_aggregater->resetPingTimer(secure);
}
return newClient;
}