ap

Dependencies:   DnsQuery

Dependents:   WizFi310_TCP_Echo_Server_Example

Fork of NetworkSocketAPI by NetworkSocketAPI

Revision:
77:b66a6984ed2d
Parent:
76:bbe51641f405
Child:
78:0914f9b9b24b
--- a/Socket.h	Tue Apr 05 09:07:28 2016 -0500
+++ b/Socket.h	Tue Apr 05 09:16:47 2016 -0500
@@ -18,30 +18,6 @@
 #ifndef SOCKET_H
 #define SOCKET_H
 
-/**
- *  @enum ns_error_t
- *  @brief enum of standardized error codes
- */
-enum ns_error_t {
-    NSAPI_ERROR_WOULD_BLOCK   = -3001,     /*!< no data is not available but call is non-blocking */
-    NSAPI_ERROR_UNSUPPORTED   = -3002,     /*!< unsupported configuration */
-    NSAPI_ERROR_NO_CONNECTION = -3003,     /*!< not connected to a network */
-    NSAPI_ERROR_NO_SOCKET     = -3004,     /*!< socket not available for use */
-    NSAPI_ERROR_NO_ADDRESS    = -3005,     /*!< IP address is not known */
-    NSAPI_ERROR_NO_MEMORY     = -3006,     /*!< memory resource not available */
-    NSAPI_ERROR_DNS_FAILURE   = -3007,     /*!< DNS failed to complete successfully */
-    NSAPI_ERROR_DHCP_FAILURE  = -3008,     /*!< DHCP failed to complete successfully */
-    NSAPI_ERROR_AUTH_FAILURE  = -3009,     /*!< connection to access point faield */
-    NSAPI_ERROR_DEVICE_ERROR  = -3010,     /*!< failure interfacing with the network procesor */
-};
-
-/**
- *  @enum ns_opt_t
- *  @brief enum of available options
- */
-enum ns_opt_t {
-};
-
 
 /** Abstract socket class
  */