aboutsummaryrefslogtreecommitdiff
path: root/cores
diff options
context:
space:
mode:
authoramcewen <amcewen@bcs.org.uk>2011-08-29 22:36:28 +0100
committeramcewen <amcewen@bcs.org.uk>2011-08-29 22:36:28 +0100
commit3f7d2c8977368de7b2309a511c36d2a5d802f7c9 (patch)
treea27463aa4591826c785d0a591de0e30f574e0fec /cores
parent528e95b14d333f7391f9baffc98a9f9362bde130 (diff)
Changed names of the Ethernet classes: Client -> EthernetClient, NetClient -> Client, and basic testing performed
Diffstat (limited to 'cores')
-rw-r--r--cores/arduino/Client.h (renamed from cores/arduino/NetClient.h)10
-rw-r--r--cores/arduino/NetServer.h11
-rw-r--r--cores/arduino/Server.h9
3 files changed, 15 insertions, 15 deletions
diff --git a/cores/arduino/NetClient.h b/cores/arduino/Client.h
index 35bfa0a..ed9e9b4 100644
--- a/cores/arduino/NetClient.h
+++ b/cores/arduino/Client.h
@@ -1,10 +1,10 @@
-#ifndef netclient_h
-#define netclient_h
+#ifndef client_h
+#define client_h
#include "Print.h"
-#include "NetClient.h"
+#include "Stream.h"
#include "IPAddress.h"
-class NetClient : public Stream {
+class Client : public Stream {
public:
virtual int connect(IPAddress ip, uint16_t port) =0;
@@ -20,6 +20,8 @@ public:
virtual void stop() = 0;
virtual uint8_t connected() = 0;
virtual operator bool() = 0;
+protected:
+ uint8_t* rawIPAddress(IPAddress& addr) { return addr.raw_address(); };
};
#endif
diff --git a/cores/arduino/NetServer.h b/cores/arduino/NetServer.h
deleted file mode 100644
index 91f4848..0000000
--- a/cores/arduino/NetServer.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef netserver_h
-#define netserver_h
-
-class NetClient;
-
-class NetServer {
-public:
- virtual void begin() =0;
-};
-
-#endif
diff --git a/cores/arduino/Server.h b/cores/arduino/Server.h
new file mode 100644
index 0000000..edab726
--- /dev/null
+++ b/cores/arduino/Server.h
@@ -0,0 +1,9 @@
+#ifndef server_h
+#define server_h
+
+class Server {
+public:
+ virtual void begin() =0;
+};
+
+#endif