2024-10-29 16:37:47 +03:00

17 lines
353 B
C++

#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__