diff options
author | Zach Eveland <zeveland@blacklabel-development.com> | 2011-09-05 12:53:45 -0400 |
---|---|---|
committer | Zach Eveland <zeveland@blacklabel-development.com> | 2011-09-05 12:53:45 -0400 |
commit | 280f381265f8b8e339c92cbcb95d09cec1ec2f19 (patch) | |
tree | 157b6b2894b97287414d589f6699f22083b507f2 /cores/arduino/Client.h | |
parent | 90ea0707e6e3fb251b3eaf6c8682f68dd44299e1 (diff) | |
parent | 560a510f6434efdfa0ebcfa9cd01093714e37f43 (diff) |
Merge branch 'new-extension' of https://github.com/arduino/Arduino into new-extension
Conflicts:
build/macosx/dist/tools-universal.zip
build/windows/avr_tools.zip
hardware/arduino/cores/arduino/HardwareSerial.cpp
Diffstat (limited to 'cores/arduino/Client.h')
-rw-r--r-- | cores/arduino/Client.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/cores/arduino/Client.h b/cores/arduino/Client.h new file mode 100644 index 0000000..ed9e9b4 --- /dev/null +++ b/cores/arduino/Client.h @@ -0,0 +1,27 @@ +#ifndef client_h +#define client_h +#include "Print.h" +#include "Stream.h" +#include "IPAddress.h" + +class Client : public Stream { + +public: + virtual int connect(IPAddress ip, uint16_t port) =0; + virtual int connect(const char *host, uint16_t port) =0; + virtual size_t write(uint8_t) =0; + virtual size_t write(const char *str) =0; + virtual size_t write(const uint8_t *buf, size_t size) =0; + virtual int available() = 0; + virtual int read() = 0; + virtual int read(uint8_t *buf, size_t size) = 0; + virtual int peek() = 0; + virtual void flush() = 0; + virtual void stop() = 0; + virtual uint8_t connected() = 0; + virtual operator bool() = 0; +protected: + uint8_t* rawIPAddress(IPAddress& addr) { return addr.raw_address(); }; +}; + +#endif |