Simple TCP Echo Server

Dependencies:   EthernetInterface mbed-rtos mbed

Dependents:   HTTPDcgi

Legacy Warning

This is an mbed 2 example. To learn more about mbed OS 5, visit the docs.

Files at this revision

API Documentation at this revision

Comitter:
emilmont
Date:
Tue Jul 31 11:51:28 2012 +0000
Parent:
1:5cebe0e38cd2
Child:
3:36fd3cfad85a
Commit message:
Add explicit setting of socket blocking/non-blocking mode and timeout

Changed in this revision

EthernetInterface.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed-rtos.lib Show annotated file Show diff for this revision Revisions of this file
--- a/EthernetInterface.lib	Wed Jul 25 15:43:24 2012 +0000
+++ b/EthernetInterface.lib	Tue Jul 31 11:51:28 2012 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/EthernetInterface/#fd9597f1b81b
+http://mbed.org/users/mbed_official/code/EthernetInterface/#f1b8651f8f29
--- a/main.cpp	Wed Jul 25 15:43:24 2012 +0000
+++ b/main.cpp	Tue Jul 31 11:51:28 2012 +0000
@@ -15,14 +15,15 @@
         printf("\nWait for new connection...\n");
         TCPSocketConnection client;
         server.accept(client);
+        client.set_blocking(false);
         
         printf("Connection from: %s\n", client.get_address());
         char buffer[256];
         while (true) {
-            int n = client.receive(buffer, 256, 3000);
+            int n = client.receive(buffer, 256);
             if (n <= 0) break;
             
-            client.send_all(buffer, n, 3000);
+            client.send_all(buffer, n);
             if (n <= 0) break;
         }
         client.close();
--- a/mbed-rtos.lib	Wed Jul 25 15:43:24 2012 +0000
+++ b/mbed-rtos.lib	Tue Jul 31 11:51:28 2012 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed-rtos/#4238c328365e
+http://mbed.org/users/mbed_official/code/mbed-rtos/#70bd33086f56