NetworkSocketAPI

Dependencies:   DnsQuery

Dependents:   HelloWizFi250Interface

Fork of NetworkSocketAPI by NetworkSocketAPI

Branch:
api-changes
Revision:
43:09ea32f2eb54
Parent:
42:49893d13c432
Child:
45:c8aca7c1e93f
--- a/NetworkInterface.h	Tue Feb 23 05:07:02 2016 -0600
+++ b/NetworkInterface.h	Wed Feb 24 22:04:19 2016 -0600
@@ -74,17 +74,6 @@
      *  @return String MAC address of the interface
      */
     virtual const char *getMACAddress() = 0;
-    
-    /** Set a timeout on network operations
-     *  @param timeout Maximum time in milliseconds for socket operations
-     */
-    virtual void setTimeout(uint32_t timeout);
-
-    /** Get the current timeout on network operations
-     *  @return Maximum time in milliseconds for socket operations
-     */
-    virtual uint32_t getTimeout();
-    
 
     /** Get the current status of the interface
      *  @return true if connected
@@ -119,7 +108,6 @@
     char _ip_address[NS_IP_SIZE];
     char _network_mask[NS_IP_SIZE];
     char _gateway[NS_IP_SIZE];
-    uint32_t _timeout;
 };
 
 #endif