The original HTTPClient by donatien with 2 bugfixes

Fork of HTTPClient by Donatien Garnier

Revision:
20:d1e87804a774
Parent:
19:277279a1891e
Parent:
17:f924558692e3
--- a/HTTPClient.cpp	Wed May 07 16:48:10 2014 +0000
+++ b/HTTPClient.cpp	Sat Mar 07 12:20:06 2015 +0000
@@ -127,7 +127,7 @@
   char scheme[8];
   uint16_t port;
   char host[32];
-  char path[64];
+  char path[128];
   //First we need to parse the url (http[s]://host[:port][/[path]]) -- HTTPS not supported (yet?)
   HTTPResult res = parseURL(url, scheme, sizeof(scheme), host, sizeof(host), &port, path, sizeof(path));
   if(res != HTTP_OK)