Fixed MQTT and WS Routing - w/o SSL
This commit is contained in:
@@ -61,7 +61,7 @@
|
||||
// ═════════════════════════════════════════════════════════════════════════════════
|
||||
// FORWARD DECLARATIONS - Dependencies injected at runtime
|
||||
// ═════════════════════════════════════════════════════════════════════════════════
|
||||
class Communication; // Command handling and communication
|
||||
class CommunicationRouter; // Command handling and communication
|
||||
class BellEngine; // High-precision timing engine
|
||||
|
||||
// ═════════════════════════════════════════════════════════════════════════════════
|
||||
@@ -104,7 +104,7 @@ public:
|
||||
* @param comm Pointer to communication manager
|
||||
* @param fm Pointer to file manager
|
||||
*/
|
||||
Player(Communication* comm, FileManager* fm);
|
||||
Player(CommunicationRouter* comm, FileManager* fm);
|
||||
|
||||
/**
|
||||
* @brief Default constructor for backward compatibility
|
||||
@@ -118,7 +118,7 @@ public:
|
||||
* @param comm Pointer to communication manager
|
||||
* @param fm Pointer to file manager
|
||||
*/
|
||||
void setDependencies(Communication* comm, FileManager* fm);
|
||||
void setDependencies(CommunicationRouter* comm, FileManager* fm);
|
||||
|
||||
/**
|
||||
* @brief Set BellEngine reference for precision timing
|
||||
@@ -238,7 +238,7 @@ private:
|
||||
// ═══════════════════════════════════════════════════════════════════════════════
|
||||
// PRIVATE DEPENDENCIES AND DATA
|
||||
// ═══════════════════════════════════════════════════════════════════════════════
|
||||
Communication* _commManager; // 📡 Communication system reference
|
||||
CommunicationRouter* _commManager; // 📡 Communication system reference
|
||||
FileManager* _fileManager; // 📁 File operations reference
|
||||
BellEngine* _bellEngine; // 🔥 High-precision timing engine reference
|
||||
|
||||
|
||||
Reference in New Issue
Block a user