Files
firmware/src/mesh/api/ethServerAPI.cpp

28 lines
598 B
C++
Raw Normal View History

#include "configuration.h"
#include <Arduino.h>
2025-03-15 14:15:35 +01:00
#if HAS_ETHERNET && !defined(USE_WS5500)
#include "ethServerAPI.h"
static ethServerPort *apiPort;
void initApiServer(int port)
{
// Start API server on port 4403
if (!apiPort) {
apiPort = new ethServerPort(port);
LOG_INFO("API server listening on TCP port %d", port);
apiPort->init();
}
}
ethServerAPI::ethServerAPI(EthernetClient &_client) : ServerAPI(_client)
{
LOG_INFO("Incoming ethernet connection");
api_type = TYPE_ETH;
}
ethServerPort::ethServerPort(int port) : APIServerPort(port) {}
#endif