1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-30 19:52:13 +01:00
Arduino/WiFi/Server.h
2011-04-21 19:16:39 +02:00

26 lines
422 B
C++
Executable File

#ifndef Server_h
#define Server_h
extern "C" {
#include "utility/wl_definitions.h"
}
#include "Print.h"
class Client;
class Server : public Print {
private:
uint16_t _port;
void* pcb;
public:
Server(uint16_t);
Client available(uint8_t* status = NULL);
void begin();
virtual void write(uint8_t);
virtual void write(const char *str);
virtual void write(const uint8_t *buf, size_t size);
};
#endif