1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-16 07:23:07 +01:00

externalize socket connection

This commit is contained in:
wellenvogel
2021-12-28 18:44:01 +01:00
parent cd9cbd11d0
commit 31798e3bec
4 changed files with 261 additions and 240 deletions

View File

@@ -5,12 +5,12 @@
#include "GwBuffer.h"
#include <memory>
class GwClient;
class GwSocketConnection;
class GwSocketServer{
private:
const GwConfigHandler *config;
GwLog *logger;
GwClient **clients=NULL;
GwSocketConnection **clients=NULL;
int listener=-1;
int listenerPort=-1;
bool allowReceive;