Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of HTTPClient by
Revision 17:c1bc4b97bddc, committed 2013-01-05
- Comitter:
- kanpapa
- Date:
- Sat Jan 05 14:25:48 2013 +0000
- Parent:
- 16:1f743885e7de
- Commit message:
- ?????????
Changed in this revision
HTTPClient.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 1f743885e7de -r c1bc4b97bddc HTTPClient.cpp --- a/HTTPClient.cpp Thu Aug 30 15:38:57 2012 +0000 +++ b/HTTPClient.cpp Sat Jan 05 14:25:48 2013 +0000 @@ -127,7 +127,8 @@ char scheme[8]; uint16_t port; char host[32]; - char path[64]; + //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)