Arduino/WiFi/Server.h

26 lines
422 B
C
Raw Normal View History

2011-02-28 04:49:08 -08:00
#ifndef Server_h
#define Server_h
extern "C" {
#include "utility/wl_definitions.h"
2011-02-28 04:49:08 -08:00
}
#include "Print.h"
class Client;
class Server : public Print {
private:
uint16_t _port;
void* pcb;
public:
Server(uint16_t);
2011-04-21 10:16:39 -07:00
Client available(uint8_t* status = NULL);
2011-02-28 04:49:08 -08:00
void begin();
virtual void write(uint8_t);
virtual void write(const char *str);
virtual void write(const uint8_t *buf, size_t size);
};
#endif