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 Socket by
Diff: TCPSocketConnection.h
- Revision:
- 5:300e7ad2dc1d
- Parent:
- 4:75988d748e4d
- Child:
- 6:cd2e5559786d
diff -r 75988d748e4d -r 300e7ad2dc1d TCPSocketConnection.h
--- a/TCPSocketConnection.h	Thu Jul 26 10:07:43 2012 +0000
+++ b/TCPSocketConnection.h	Thu Jul 26 15:07:32 2012 +0000
@@ -20,11 +20,12 @@
 #define TCPSOCKET_H
 
 #include "Socket/Socket.h"
+#include "Socket/Endpoint.h"
 
 /**
 This is a C++ abstraction for TCP networking sockets.
 */
-class TCPSocketConnection : public Socket {
+class TCPSocketConnection : public Socket, Endpoint {
     friend class TCPSocketServer;
     
 public:
@@ -72,15 +73,9 @@
     \return the number of received bytes on success (>=0) or -1 on failure
     */
     int receive_all(char* data, int length, int timeout=0);
-    
-    char* get_address();
-    int   get_port();
-    
+
 private:
-    char _ipAddress[16];
-    
     bool _closedByRemoteHost;
-    struct sockaddr_in _remoteHost;
 
 };
 
    