From eac2983285b4bc40250771fb5141aa63c76a9a90 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Wed, 30 Jul 2008 14:47:36 +0000 Subject: Adding ethernet library. --- libraries/Ethernet/Server.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 libraries/Ethernet/Server.h (limited to 'libraries/Ethernet/Server.h') diff --git a/libraries/Ethernet/Server.h b/libraries/Ethernet/Server.h new file mode 100644 index 0000000..d35e691 --- /dev/null +++ b/libraries/Ethernet/Server.h @@ -0,0 +1,23 @@ +#ifndef Server_h +#define Server_h + +extern "C" { + #include "utility/types.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); +}; + +#endif -- cgit v1.2.3-18-g5258