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.
Dependencies: EthernetNetIf mbed
Revision 3:b69bca736df0, committed 2010-07-09
- Comitter:
- donatien
- Date:
- Fri Jul 09 14:45:12 2010 +0000
- Parent:
- 2:05688dfa032f
- Commit message:
Changed in this revision
| HTTPClientStreamingExample.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/HTTPClientStreamingExample.cpp Fri Jul 09 14:39:10 2010 +0000
+++ b/HTTPClientStreamingExample.cpp Fri Jul 09 14:45:12 2010 +0000
@@ -31,7 +31,8 @@
char BigBuf[512 + 1] = {0};
stream.readNext((byte*)BigBuf, 512); //Point to buffer for the first read
//HTTPResult r = http.get("http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss.xml", &stream, request_callback); //Load a very large page, such as the hackaday RSS feed
- HTTPResult r = http.get("http://hackaday.com/feed/", &stream, request_callback); //Load a very large page, such as the hackaday RSS feed
+ //HTTPResult r = http.get("http://hackaday.com/feed/", &stream, request_callback); //Load a very large page, such as the hackaday RSS feed
+ HTTPResult r = http.get("http://mbed.org/blog/feeds/entries/", &stream, request_callback); //Load a very large page
while(!completed)
{