Simple HTTP server example with WIZ550io, W5500 (WIZnet chipset) .access the mbed via any browser, mbed echo back http request header.

Dependencies:   W5500Interface mbed

Fork of HTTPServer_echoback_WIZ550io by Bongjun Hur

Revision:
11:59dcefdda506
Parent:
9:4757a976148d
Child:
13:25ce35614dd1
--- a/main.cpp	Wed Aug 01 13:32:17 2012 +0000
+++ b/main.cpp	Fri Aug 10 09:41:51 2012 +0000
@@ -11,7 +11,7 @@
     sock.connect("mbed.org", 80);
     
     char http_cmd[] = "GET /media/uploads/mbed_official/hello.txt HTTP/1.0\n\n";
-    sock.send_all(http_cmd, sizeof(http_cmd));
+    sock.send_all(http_cmd, sizeof(http_cmd)-1);
     
     char buffer[300];
     int ret;