Subversion Repositories Kolibri OS

Rev

Rev 3704 | Rev 5842 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3704 Rev 4208
Line 94... Line 94...
94
        IP      dd ?
94
        IP      dd ?
95
        MAC     dp ?
95
        MAC     dp ?
96
        status  dw ?
96
        status  dw ?
97
        TTL     dw ?
97
        TTL     dw ?
98
ends
98
ends
-
 
99
 
-
 
100
 
-
 
101
; Socket error codes
-
 
102
; Error Codes
-
 
103
ENOBUFS                 = 1
-
 
104
EINPROGRESS             = 2
-
 
105
EOPNOTSUPP              = 4
-
 
106
EWOULDBLOCK             = 6
-
 
107
ENOTCONN                = 9
-
 
108
EALREADY                = 10
-
 
109
EINVAL                  = 11
-
 
110
EMSGSIZE                = 12
-
 
111
ENOMEM                  = 18
-
 
112
EADDRINUSE              = 20
-
 
113
ECONNREFUSED            = 61
-
 
114
ECONNRESET              = 52
-
 
115
EISCONN                 = 56
-
 
116
ETIMEDOUT               = 60
-
 
117
ECONNABORTED            = 53
99
118