summaryrefslogtreecommitdiff
path: root/libraries/Ethernet/Server.h
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2011-10-20 22:16:19 -0700
committerJesse Morgan <jesse@jesterpm.net>2011-10-20 22:16:19 -0700
commitfc944ff979dbbd49a57722fe2d1d2acf47312eb4 (patch)
tree38cc3a5c5c8f24f55068fc4ffa73d018169fc2df /libraries/Ethernet/Server.h
Inital commit... halfway through the project
Diffstat (limited to 'libraries/Ethernet/Server.h')
-rw-r--r--libraries/Ethernet/Server.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/libraries/Ethernet/Server.h b/libraries/Ethernet/Server.h
new file mode 100644
index 0000000..a78a4ae
--- /dev/null
+++ b/libraries/Ethernet/Server.h
@@ -0,0 +1,22 @@
+#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