mirror of
https://github.com/Show-maket/EthernetMaket.git
synced 2025-05-04 15:20:18 +00:00
17 lines
353 B
C++
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__
|