Expand path size to 256
Dependents: mpod_picasa_photoframe
Fork of HTTPClient by
Diff: HTTPClient.cpp
- Revision:
- 16:b1301b34d0ad
- Parent:
- 15:5ad07f90e895
--- a/HTTPClient.cpp Wed Aug 29 11:16:48 2012 +0000 +++ b/HTTPClient.cpp Thu Aug 30 12:52:26 2012 +0000 @@ -111,7 +111,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)