I added functionality to get the RSSI, BER, and Cell Neighbor for reporting connection issues to M2X

Dependencies:   WncControllerK64F

Revision:
29:b278b745fb4f
Parent:
28:dceb8da78e6d
diff -r dceb8da78e6d -r b278b745fb4f Socket/WncTCPSocketConnection.h
--- a/Socket/WncTCPSocketConnection.h	Fri Mar 24 22:02:33 2017 +0000
+++ b/Socket/WncTCPSocketConnection.h	Fri Mar 24 22:26:23 2017 +0000
@@ -31,10 +31,11 @@
 /**
 TCP socket connection
 */
-class TCPSocketConnection : public WncSocket, public WncEndpoint {
+class WncTCPSocketConnection : public WncSocket, public WncEndpoint {
     
 public:
-    TCPSocketConnection();
+    WncTCPSocketConnection(void) : _is_blocking(0),
+        _btimeout(0);
 
     /** Connects this TCP socket to the server
     \param host The host to connect to. It can either be an IP Address or a hostname that will be resolved with DNS.