aboutsummaryrefslogtreecommitdiff
path: root/libraries/Ethernet/Server.h
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/Ethernet/Server.h')
-rw-r--r--libraries/Ethernet/Server.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/libraries/Ethernet/Server.h b/libraries/Ethernet/Server.h
deleted file mode 100644
index 6aa5d3a..0000000
--- a/libraries/Ethernet/Server.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#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