Ethernet stuff

This commit is contained in:
Wolfgang Hottgenroth
2016-10-30 00:35:25 +02:00
parent 7ec78fbb6d
commit e7f3a81173
21 changed files with 3198 additions and 58 deletions

22
Ethernet/EthernetServer.h Normal file
View File

@ -0,0 +1,22 @@
#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