#ifndef __MAKET_TCP_H__ #define __MAKET_TCP_H__ #include "../util/config.h" class EthernetMaketClient : public EthernetClient { public: using EthernetClient::EthernetClient; ConnectionStatusSimple connectNonBlock(IPAddress ip, uint16_t port); // void stop() override; void disconnect(); void close(); }; #endif // __MAKET_TCP_H__