aboutsummaryrefslogtreecommitdiff
path: root/libraries/Ethernet/Server.h
diff options
context:
space:
mode:
authorThibaut VIARD <thibaut.viard@atmel.com>2011-06-21 00:20:43 +0200
committerThibaut VIARD <thibaut.viard@atmel.com>2011-06-21 00:20:43 +0200
commit0887b98f627500271b5ad8b3c4f6c7b90bc227ee (patch)
treeef8626954567ba22e392c68c8f3606416b07b5b5 /libraries/Ethernet/Server.h
parent90c487402cefadb6a2aab907ab07075cbb759e34 (diff)
Moving all AVR specific libraries to hardware/avr
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..6aa5d3a
--- /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