|
| HttpServer (const HttpServerSettings &settings) |
|
void | configure (const HttpServerSettings &settings) |
| Allows changing the server configuration. More...
|
|
void | setBodyParser (const String &contentType, HttpBodyParserDelegate parser) |
|
void | addPath (String path, const HttpPathDelegate &callback) SMING_DEPRECATED |
|
void | addPath (const String &path, const HttpResourceDelegate &onRequestComplete) SMING_DEPRECATED |
|
void | addPath (const String &path, HttpResource *resource) SMING_DEPRECATED |
|
void | setDefaultHandler (const HttpPathDelegate &callback) SMING_DEPRECATED |
|
void | setDefaultResource (HttpResource *resource) SMING_DEPRECATED |
|
virtual bool | listen (int port, bool useSsl=false) |
|
void | setKeepAlive (uint16_t seconds) |
|
void | shutdown () |
|
void | setServerKeyCert (const SslKeyCertPair &serverKeyCert) SMING_DEPRECATED |
| Adds SSL support and specifies the server certificate and private key. More...
|
|
virtual bool | connect (const String &server, int port, bool useSsl=false, uint32_t sslOptions=0) |
|
virtual bool | connect (IPAddress addr, uint16_t port, bool useSsl=false, uint32_t sslOptions=0) |
|
virtual void | close () |
|
int | writeString (const char *data, uint8_t apiflags=TCP_WRITE_FLAG_COPY) |
|
int | writeString (const String &data, uint8_t apiflags=TCP_WRITE_FLAG_COPY) |
|
virtual int | write (const char *data, int len, uint8_t apiflags=TCP_WRITE_FLAG_COPY) |
| Base write operation. More...
|
|
int | write (IDataSourceStream *stream) |
|
uint16_t | getAvailableWriteSize () |
|
void | flush () |
|
void | setTimeOut (uint16_t waitTimeOut) |
|
IPAddress | getRemoteIp () const |
|
uint16_t | getRemotePort () const |
|
void | setDestroyedDelegate (TcpConnectionDestroyedDelegate destroyedDelegate) |
| Sets a callback to be called when the object instance is destroyed. More...
|
|
void | addSslOptions (uint32_t sslOptions) |
|
bool | setSslClientKeyCert (const uint8_t *key, int keyLength, const uint8_t *certificate, int certificateLength, const char *keyPassword=nullptr, bool freeAfterHandshake=false) SMING_DEPRECATED |
| Sets client private key, certificate and password from memory. More...
|
|
bool | setSslClientKeyCert (const SslKeyCertPair &clientKeyCert, bool freeAfterHandshake=false) SMING_DEPRECATED |
| Sets client private key, certificate and password from memory. More...
|
|
void | freeSslClientKeyCert () SMING_DEPRECATED |
| Frees the memory used for the key and certificate pair. More...
|
|
bool | setSslKeyCert (const uint8_t *key, int keyLength, const uint8_t *certificate, int certificateLength, const char *keyPassword=nullptr, bool freeAfterHandshake=false) |
| Sets private key, certificate and password from memory for the SSL connection If this methods is called from a client then it sets the client key and certificate If it is called from a server then it sets the server certificate and key. Server and Client certificates differ. Client certificate is used for identification. Server certificate is used for encrypt/decrypt the data. Make sure to use the correct certificate for the desired goal. More...
|
|
bool | setSslKeyCert (const SslKeyCertPair &keyCert, bool freeAfterHandshake=false) |
| Sets private key, certificate and password from memory for the SSL connection If this methods is called from a client then it sets the client key and certificate If it is called from a server then it sets the server certificate and key. Server and Client certificates differ. Client certificate is used for identification. Server certificate is used for encrypt/decrypt the data. Make sure to use the correct certificate for the desired goal. More...
|
|
void | freeSslKeyCert () |
| Frees the memory used for the key and certificate pair. More...
|
|
void | setSsl (SSL *ssl) |
|
SSL * | getSsl () |
|
|
TcpConnection * | createClient (tcp_pcb *clientTcp) override |
|
virtual err_t | onAccept (tcp_pcb *clientTcp, err_t err) |
|
virtual void | onClient (TcpClient *client) |
|
virtual bool | onClientReceive (TcpClient &client, char *data, int size) |
|
virtual void | onClientComplete (TcpClient &client, bool successful) |
|
virtual void | onClientDestroy (TcpConnection &connection) |
|
void | initialize (tcp_pcb *pcb) |
|
bool | internalConnect (IPAddress addr, uint16_t port) |
|
virtual err_t | onConnected (err_t err) |
|
virtual err_t | onReceive (pbuf *buf) |
|
virtual err_t | onSent (uint16_t len) |
|
virtual err_t | onPoll () |
|
virtual void | onError (err_t err) |
|
virtual void | onReadyToSendData (TcpConnectionEvent sourceEvent) |
|
virtual err_t | onSslConnected (SSL *ssl) |
|
err_t | internalOnConnected (err_t err) |
|
err_t | internalOnReceive (pbuf *p, err_t err) |
|
err_t | internalOnSent (uint16_t len) |
|
err_t | internalOnPoll () |
|
void | internalOnError (err_t err) |
|
void | internalOnDnsResponse (const char *name, LWIP_IP_ADDR_T *ipaddr, int port) |
|