forked from weirdhome

Fork of HTTPClient by David Smart

Revision:
46:01970be2f08a
Parent:
38:2ef07232f65c
--- a/HTTPClient.h	Sun Oct 01 18:07:05 2017 +0000
+++ b/HTTPClient.h	Sun Apr 22 23:31:03 2018 +0000
@@ -180,7 +180,7 @@
 
     HTTPResult connect(const char* url, HTTP_METH method, IHTTPDataOut* pDataOut, IHTTPDataIn* pDataIn, int timeout); //Execute request
     HTTPResult recv(char* buf, size_t minLen, size_t maxLen, size_t* pReadLen); //0 on success, err code on failure
-    HTTPResult send(const char* buf, size_t len = 0); //0 on success, err code on failure
+    HTTPResult send(char* buf, size_t len = 0); //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 createauth (const char *user, const char *pwd, char *buf, int len);
     int base64enc(const char *input, unsigned int length, char *output, int len);