The original HTTPClient by donatien with 2 bugfixes

Fork of HTTPClient by Donatien Garnier

Revision:
17:f924558692e3
Parent:
16:1f743885e7de
Child:
20:d1e87804a774
--- a/HTTPClient.cpp	Thu Aug 30 15:38:57 2012 +0000
+++ b/HTTPClient.cpp	Sat Dec 29 14:16:32 2012 +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)