You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
347 B
C
23 lines
347 B
C
14 years ago
|
#ifndef server_h
|
||
|
#define server_h
|
||
15 years ago
|
|
||
|
#include "Print.h"
|
||
|
|
||
|
class Client;
|
||
|
|
||
14 years ago
|
class Server :
|
||
|
public Print {
|
||
15 years ago
|
private:
|
||
|
uint16_t _port;
|
||
|
void accept();
|
||
|
public:
|
||
|
Server(uint16_t);
|
||
|
Client available();
|
||
|
void begin();
|
||
|
virtual void write(uint8_t);
|
||
|
virtual void write(const char *str);
|
||
|
virtual void write(const uint8_t *buf, size_t size);
|
||
|
};
|
||
|
|
||
|
#endif
|