1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-01 03:47:23 +03:00

Revert "Binary without staxk traces"

This reverts commit 3e469d7a612405642e616d6af165f4573b416e3f.
This commit is contained in:
Federico Vanzati
2012-06-06 11:28:21 +02:00
parent 771ef148a0
commit 9c63ffb8b7
28 changed files with 3886 additions and 0 deletions

27
WiFi/WiFiServer.h Executable file
View File

@ -0,0 +1,27 @@
#ifndef wifiserver_h
#define wifiserver_h
extern "C" {
#include "utility/wl_definitions.h"
}
#include "Server.h"
class WiFiClient;
class WiFiServer : public Server {
private:
uint16_t _port;
void* pcb;
public:
WiFiServer(uint16_t);
WiFiClient available(uint8_t* status = NULL);
void begin();
virtual size_t write(uint8_t);
virtual size_t write(const uint8_t *buf, size_t size);
uint8_t status();
using Print::write;
};
#endif