ap

Dependencies:   DnsQuery

Dependents:   WizFi310_TCP_Echo_Server_Example

Fork of NetworkSocketAPI by NetworkSocketAPI

Revision:
105:2fd212f8da61
Parent:
104:d28d8b508e7c
--- a/TCPServer.h	Tue Apr 19 18:26:21 2016 -0500
+++ b/TCPServer.h	Tue Apr 19 18:26:36 2016 -0500
@@ -19,7 +19,7 @@
 
 #include "Socket.h"
 #include "TCPSocket.h"
-#include "NetworkInterface.h"
+#include "NetworkStack.h"
 
 /** TCP socket server
   */
@@ -37,7 +37,7 @@
      *
      *  @param iface    Network stack as target for socket
      */
-    TCPServer(NetworkInterface *iface);
+    TCPServer(NetworkStack *iface);
 
     /** Opens a socket
      *
@@ -47,7 +47,7 @@
      *  @param iface    Network stack as target for socket
      *  @return         0 on success, negative error code on failure
      */
-    virtual int open(NetworkInterface *iface);
+    virtual int open(NetworkStack *iface);
     
     /** Listen for connections on a TCP socket
      *