mbed socket API

Dependents:   EthernetInterface EthernetInterface_RSF EthernetInterface EthernetInterface ... more

Deprecated

This is an mbed 2 sockets library. For mbed 5, network sockets have been revised to better support additional network stacks and thread safety here.

Files at this revision

API Documentation at this revision

Comitter:
emilmont
Date:
Fri Jul 27 14:22:45 2012 +0000
Parent:
6:cd2e5559786d
Child:
8:9cf9c2d45264
Commit message:
The Endpoint inheritance should be public

Changed in this revision

TCPSocketConnection.h Show annotated file Show diff for this revision Revisions of this file
--- a/TCPSocketConnection.h	Fri Jul 27 13:58:53 2012 +0000
+++ b/TCPSocketConnection.h	Fri Jul 27 14:22:45 2012 +0000
@@ -25,7 +25,7 @@
 /**
 This is a C++ abstraction for TCP networking sockets.
 */
-class TCPSocketConnection : public Socket, Endpoint {
+class TCPSocketConnection : public Socket, public Endpoint {
     friend class TCPSocketServer;
     
 public: