fork of HTTPClient, adding custom content type for HTTPText (for now)
Fork of HTTPClient by
Diff: HTTPClient.h
- Revision:
- 31:7fd621b83b60
- Parent:
- 27:5d4739eae63e
- Child:
- 33:77082c88748a
--- a/HTTPClient.h Fri Dec 05 07:03:47 2014 +0000 +++ b/HTTPClient.h Fri Jun 26 00:39:47 2015 +0000 @@ -140,7 +140,7 @@ HTTPResult send(char* buf, size_t len = 0); //0 on success, err code on failure HTTPResult flush(void); //0 on success, err code on failure HTTPResult parseURL(const char* url, char* scheme, size_t maxSchemeLen, char* host, size_t maxHostLen, uint16_t* port, char* path, size_t maxPathLen); //Parse URL - void cyassl_free(void) ; + void wolfssl_free(void) ; HTTPResult bAuth(void) ; HTTPResult readHeader(void) ; @@ -160,8 +160,8 @@ /* for CyaSSL */ int SSLver ; uint16_t port; - struct CYASSL_CTX* ctx ; - struct CYASSL * ssl ; + struct WOLFSSL_CTX* ctx ; + struct WOLFSSL * ssl ; }; //Including data containers here for more convenience