Expand path size to 256
Dependents: mpod_picasa_photoframe
Fork of HTTPClient by
Diff: HTTPClient.cpp
- Revision:
- 18:68da5c7fed90
- Parent:
- 17:1f743885e7de
--- a/HTTPClient.cpp Thu Aug 30 15:38:57 2012 +0000 +++ b/HTTPClient.cpp Sat Sep 01 04:26:08 2012 +0000 @@ -127,7 +127,7 @@ char scheme[8]; uint16_t port; char host[32]; - char path[64]; + char path[256]; //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)