Fixed MQTT and WS Routing - w/o SSL
This commit is contained in:
@@ -57,7 +57,7 @@
|
||||
// Forward declarations for all monitored subsystems
|
||||
class BellEngine;
|
||||
class OutputManager;
|
||||
class Communication;
|
||||
class CommunicationRouter;
|
||||
class Player;
|
||||
class Timekeeper;
|
||||
class Telemetry;
|
||||
@@ -137,7 +137,7 @@ public:
|
||||
void setOutputManager(OutputManager* outputManager) { _outputManager = outputManager; }
|
||||
|
||||
/** @brief Register Communication for monitoring */
|
||||
void setCommunication(Communication* communication) { _communication = communication; }
|
||||
void setCommunication(CommunicationRouter* communication) { _communication = communication; }
|
||||
|
||||
/** @brief Register Player for monitoring */
|
||||
void setPlayer(Player* player) { _player = player; }
|
||||
@@ -256,7 +256,7 @@ private:
|
||||
// ═══════════════════════════════════════════════════════════════════════════════
|
||||
BellEngine* _bellEngine = nullptr;
|
||||
OutputManager* _outputManager = nullptr;
|
||||
Communication* _communication = nullptr;
|
||||
CommunicationRouter* _communication = nullptr;
|
||||
Player* _player = nullptr;
|
||||
Timekeeper* _timeKeeper = nullptr;
|
||||
Telemetry* _telemetry = nullptr;
|
||||
|
||||
Reference in New Issue
Block a user