2014-02-27 12:46:00 +01:00
|
|
|
/*
|
|
|
|
WiFiServer.h - Library for Arduino Wifi shield.
|
|
|
|
Copyright (c) 2011-2014 Arduino. All right reserved.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2011-08-31 10:34:51 +02:00
|
|
|
#ifndef wifiserver_h
|
|
|
|
#define wifiserver_h
|
2011-02-28 13:49:08 +01:00
|
|
|
|
|
|
|
extern "C" {
|
2011-03-08 22:13:54 +01:00
|
|
|
#include "utility/wl_definitions.h"
|
2011-02-28 13:49:08 +01:00
|
|
|
}
|
|
|
|
|
2011-08-31 10:34:51 +02:00
|
|
|
#include "Server.h"
|
2011-02-28 13:49:08 +01:00
|
|
|
|
2011-08-31 10:34:51 +02:00
|
|
|
class WiFiClient;
|
2011-02-28 13:49:08 +01:00
|
|
|
|
2011-08-31 10:34:51 +02:00
|
|
|
class WiFiServer : public Server {
|
2011-02-28 13:49:08 +01:00
|
|
|
private:
|
|
|
|
uint16_t _port;
|
|
|
|
void* pcb;
|
|
|
|
public:
|
2011-08-31 10:34:51 +02:00
|
|
|
WiFiServer(uint16_t);
|
|
|
|
WiFiClient available(uint8_t* status = NULL);
|
2011-02-28 13:49:08 +01:00
|
|
|
void begin();
|
2011-09-14 00:13:31 +02:00
|
|
|
virtual size_t write(uint8_t);
|
|
|
|
virtual size_t write(const uint8_t *buf, size_t size);
|
2012-02-04 12:29:12 +01:00
|
|
|
uint8_t status();
|
2011-09-14 00:13:31 +02:00
|
|
|
|
|
|
|
using Print::write;
|
2011-02-28 13:49:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|