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 cc3000_hostdriver_mbedsocket by
Diff: Socket/TCPSocketConnection.h
- Revision:
- 47:86bb5f431c50
- Parent:
- 5:245ac5b73132
--- a/Socket/TCPSocketConnection.h Sun Nov 10 21:41:44 2013 +0100 +++ b/Socket/TCPSocketConnection.h Mon Oct 27 18:45:11 2014 +0000 @@ -40,11 +40,6 @@ */ int connect(const char *host, const int port); - /** Check if the socket is connected - \return true if connected, false otherwise. - */ - bool is_connected(void); - /** Send data to the remote host. \param data The buffer to send to the host. \param length The length of the buffer to send. @@ -73,7 +68,6 @@ */ int receive_all(char *data, int length); private: - bool _is_connected; cc3000 *_cc3000_module; };