You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
392 B
C
23 lines
392 B
C
7 years ago
|
#ifndef ethernetserver_h
|
||
|
#define ethernetserver_h
|
||
|
|
||
|
#include "Server.h"
|
||
|
|
||
|
class EthernetClient;
|
||
|
|
||
|
class EthernetServer :
|
||
|
public Server {
|
||
|
private:
|
||
|
uint16_t _port;
|
||
|
void accept();
|
||
|
public:
|
||
|
EthernetServer(uint16_t);
|
||
|
EthernetClient available();
|
||
|
virtual void begin();
|
||
|
virtual size_t write(uint8_t);
|
||
|
virtual size_t write(const uint8_t *buf, size_t size);
|
||
|
using Print::write;
|
||
|
};
|
||
|
|
||
|
#endif
|