mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-03 14:24:15 +01:00
8059abe581
The type is long, and negative values indicate errors. Needs more testing. http://code.google.com/p/arduino/issues/detail?id=551
23 lines
347 B
C++
23 lines
347 B
C++
#ifndef server_h
|
|
#define server_h
|
|
|
|
#include "Print.h"
|
|
|
|
class Client;
|
|
|
|
class Server :
|
|
public Print {
|
|
private:
|
|
uint16_t _port;
|
|
void accept();
|
|
public:
|
|
Server(uint16_t);
|
|
Client available();
|
|
void begin();
|
|
virtual long write(uint8_t);
|
|
virtual long write(const char *str);
|
|
virtual long write(const uint8_t *buf, size_t size);
|
|
};
|
|
|
|
#endif
|