Changed names of the Ethernet classes: Client -> EthernetClient, NetClient -> Client, and basic testing performed
This commit is contained in:
parent
528e95b14d
commit
3f7d2c8977
|
@ -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
|
|
@ -1,11 +0,0 @@
|
|||
#ifndef netserver_h
|
||||
#define netserver_h
|
||||
|
||||
class NetClient;
|
||||
|
||||
class NetServer {
|
||||
public:
|
||||
virtual void begin() =0;
|
||||
};
|
||||
|
||||
#endif
|
|
@ -0,0 +1,9 @@
|
|||
#ifndef server_h
|
||||
#define server_h
|
||||
|
||||
class Server {
|
||||
public:
|
||||
virtual void begin() =0;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue