Files

22 lines
346 B
C
Raw Permalink Normal View History

2023-03-17 11:59:21 +00:00
#ifndef Server_h
#define Server_h
#include "Print.h"
class Client;
class Server : public Print {
private:
uint16_t _port;
void accept();
public:
Server(uint16_t);
Client available();
void begin();
virtual void write(uint8_t);
virtual void write(const char *str);
virtual void write(const uint8_t *buf, size_t size);
};
#endif