ap

Dependencies:   DnsQuery

Dependents:   WizFi310_TCP_Echo_Server_Example

Fork of NetworkSocketAPI by NetworkSocketAPI

Revision:
81:1600369a29dd
Parent:
79:43a7e8c0d6cc
Child:
86:7ca9776b9cc0
--- a/Socket.h	Tue Apr 05 12:02:56 2016 -0500
+++ b/Socket.h	Tue Apr 05 12:52:07 2016 -0500
@@ -26,7 +26,7 @@
 public:
     /** Socket lifetime
      */
-    ~Socket();
+    virtual ~Socket();
     
     /** Set blocking or non-blocking mode of the socket
     \param blocking  true for blocking mode, false for non-blocking mode.
@@ -62,6 +62,8 @@
 protected:
     Socket(NetworkInterface *iface, NetworkInterface::protocol_t proto);
 
+    static void thunk(void *);
+
     NetworkInterface *_iface;
     void *_socket;
     bool _blocking;