NetworkSocketAPI

Dependencies:   DnsQuery

Dependents:   HelloWizFi250Interface

Fork of NetworkSocketAPI by NetworkSocketAPI

Branch:
api-changes
Revision:
32:2c5fc105fc50
Parent:
30:3cc78f5db99d
--- a/TCPSocket.cpp	Mon Feb 22 22:51:03 2016 +0000
+++ b/TCPSocket.cpp	Mon Feb 22 19:07:36 2016 -0600
@@ -21,17 +21,3 @@
 {
 }
 
-int32_t TCPSocket::open()
-{
-    SocketInterface *s = _get_socket();
-    if (!s) return -2;
-    return s->close();
-}
-
-int32_t TCPSocket::close()
-{
-    SocketInterface *s = _get_socket();
-    if (!s) return -2;
-    return s->close();
-}
-