98 lines
2.6 KiB
C++
98 lines
2.6 KiB
C++
/*
|
|
Client.h - Base class that provides Client
|
|
Copyright (c) 2011 Adrian McEwen. 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
|
|
*/
|
|
|
|
#ifndef _WIFICLIENT_H_
|
|
#define _WIFICLIENT_H_
|
|
|
|
|
|
#include "Arduino.h"
|
|
#include "Client.h"
|
|
#undef min
|
|
#undef max
|
|
#include <memory>
|
|
|
|
class WiFiClientSocketHandle;
|
|
|
|
class WiFiClient : public Client
|
|
{
|
|
protected:
|
|
std::shared_ptr<WiFiClientSocketHandle> clientSocketHandle;
|
|
bool _connected;
|
|
|
|
public:
|
|
WiFiClient *next;
|
|
WiFiClient();
|
|
WiFiClient(int fd);
|
|
~WiFiClient();
|
|
int connect(IPAddress ip, uint16_t port);
|
|
int connect(const char *host, uint16_t port);
|
|
size_t write(uint8_t data);
|
|
size_t write(const uint8_t *buf, size_t size);
|
|
size_t write_P(PGM_P buf, size_t size);
|
|
int available();
|
|
int read();
|
|
int read(uint8_t *buf, size_t size);
|
|
int peek();
|
|
void flush();
|
|
void stop();
|
|
uint8_t connected();
|
|
|
|
operator bool()
|
|
{
|
|
return connected();
|
|
}
|
|
WiFiClient & operator=(const WiFiClient &other);
|
|
bool operator==(const bool value)
|
|
{
|
|
return bool() == value;
|
|
}
|
|
bool operator!=(const bool value)
|
|
{
|
|
return bool() != value;
|
|
}
|
|
bool operator==(const WiFiClient&);
|
|
bool operator!=(const WiFiClient& rhs)
|
|
{
|
|
return !this->operator==(rhs);
|
|
};
|
|
|
|
int fd() const;
|
|
|
|
int setSocketOption(int option, char* value, size_t len);
|
|
int setOption(int option, int *value);
|
|
int getOption(int option, int *value);
|
|
int setTimeout(uint32_t seconds);
|
|
int setNoDelay(bool nodelay);
|
|
bool getNoDelay();
|
|
|
|
IPAddress remoteIP() const;
|
|
IPAddress remoteIP(int fd) const;
|
|
uint16_t remotePort() const;
|
|
uint16_t remotePort(int fd) const;
|
|
IPAddress localIP() const;
|
|
IPAddress localIP(int fd) const;
|
|
uint16_t localPort() const;
|
|
uint16_t localPort(int fd) const;
|
|
|
|
//friend class WiFiServer;
|
|
using Print::write;
|
|
};
|
|
|
|
#endif /* _WIFICLIENT_H_ */
|