Matthew Furseman / cc3000_hostdriver_mbedsocket_hacked

Fork of cc3000_hostdriver_mbedsocket by Martin Kojtal

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;
 };