Subversion Repositories Kolibri OS

Rev

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

Rev 6413 Rev 6476
Line 1... Line 1...
1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                                 ;;
2
;;                                                                 ;;
3
;; Copyright (C) KolibriOS team 2004-2015. All rights reserved.    ;;
3
;; Copyright (C) KolibriOS team 2004-2016. All rights reserved.    ;;
4
;; Distributed under terms of the GNU General Public License       ;;
4
;; Distributed under terms of the GNU General Public License       ;;
5
;;                                                                 ;;
5
;;                                                                 ;;
6
;;  STACK.INC                                                      ;;
6
;;  STACK.INC                                                      ;;
7
;;                                                                 ;;
7
;;                                                                 ;;
8
;;  TCP/IP stack for KolibriOS                                     ;;
8
;;  TCP/IP stack for KolibriOS                                     ;;
Line 19... Line 19...
19
;;          GNU GENERAL PUBLIC LICENSE                             ;;
19
;;          GNU GENERAL PUBLIC LICENSE                             ;;
20
;;             Version 2, June 1991                                ;;
20
;;             Version 2, June 1991                                ;;
21
;;                                                                 ;;
21
;;                                                                 ;;
22
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
22
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 23... Line 23...
23
 
23
 
Line 24... Line 24...
24
$Revision: 6413 $
24
$Revision: 6476 $
25
 
25
 
26
uglobal
26
uglobal
27
        net_10ms        dd ?
27
        net_10ms        dd ?
Line 89... Line 89...
89
SO_OOBINLINE            = 1 shl 5
89
SO_OOBINLINE            = 1 shl 5
90
SO_REUSEADDR            = 1 shl 6
90
SO_REUSEADDR            = 1 shl 6
91
SO_REUSEPORT            = 1 shl 7
91
SO_REUSEPORT            = 1 shl 7
92
SO_USELOOPBACK          = 1 shl 8
92
SO_USELOOPBACK          = 1 shl 8
93
SO_BINDTODEVICE         = 1 shl 9
93
SO_BINDTODEVICE         = 1 shl 9
-
 
94
SO_LINGER               = 1 shl 10
Line 94... Line 95...
94
 
95
 
Line 95... Line 96...
95
SO_NONBLOCK             = 1 shl 31
96
SO_NONBLOCK             = 1 shl 31
96
 
97
 
Line 129... Line 130...
129
EALREADY                = 10
130
EALREADY                = 10
130
EINVAL                  = 11
131
EINVAL                  = 11
131
EMSGSIZE                = 12
132
EMSGSIZE                = 12
132
ENOMEM                  = 18
133
ENOMEM                  = 18
133
EADDRINUSE              = 20
134
EADDRINUSE              = 20
134
ECONNREFUSED            = 61
135
EADDRNOTAVAIL           = 21
135
ECONNRESET              = 52
136
ECONNRESET              = 52
-
 
137
ECONNABORTED            = 53
136
EISCONN                 = 56
138
EISCONN                 = 56
137
ETIMEDOUT               = 60
139
ETIMEDOUT               = 60
138
ECONNABORTED            = 53
140
ECONNREFUSED            = 61
Line 139... Line 141...
139
 
141
 
140
; Api protocol numbers
142
; Api protocol numbers
141
API_ETH                 = 0
143
API_ETH                 = 0
142
API_IPv4                = 1
144
API_IPv4                = 1