Subversion Repositories Kolibri OS

Rev

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

Rev 3643 Rev 3674
Line 102... Line 102...
102
SS_RCVATMARK            = 0x0040        ; at mark on input
102
SS_RCVATMARK            = 0x0040        ; at mark on input
103
SS_ISABORTING           = 0x0080        ; aborting fd references - close()
103
SS_ISABORTING           = 0x0080        ; aborting fd references - close()
104
SS_RESTARTSYS           = 0x0100        ; restart blocked system calls
104
SS_RESTARTSYS           = 0x0100        ; restart blocked system calls
105
SS_ISDISCONNECTED       = 0x0800        ; socket disconnected from peer
105
SS_ISDISCONNECTED       = 0x0800        ; socket disconnected from peer
Line 106... Line 106...
106
 
106
 
107
SS_ASYNC                = 0x0100        ; async i/o notify
107
SS_ASYNC                = 0x1000        ; async i/o notify
108
SS_ISCONFIRMING         = 0x0200        ; deciding to accept connection req
108
SS_ISCONFIRMING         = 0x2000        ; deciding to accept connection req
Line 109... Line 109...
109
SS_MORETOCOME           = 0x0400
109
SS_MORETOCOME           = 0x4000
Line 110... Line 110...
110
 
110
 
111
SS_BLOCKED              = 0x8000
111
SS_BLOCKED              = 0x8000
Line 112... Line 112...
112
 
112
 
113
 
113
 
-
 
114
SOCKET_MAXDATA          = 4096*32       ; must be 4096*(power of 2) where 'power of 2' is at least 8
-
 
115
MAX_backlog             = 20            ; maximum backlog for stream sockets
-
 
116
 
-
 
117
; Error Codes
-
 
118
ENOBUFS                 = 1
-
 
119
EOPNOTSUPP              = 4
-
 
120
EWOULDBLOCK             = 6
-
 
121
ENOTCONN                = 9
114
SOCKET_MAXDATA          = 4096*32       ; must be 4096*(power of 2) where 'power of 2' is at least 8
122
EALREADY                = 10
115
MAX_backlog             = 20            ; maximum backlog for stream sockets
123
EINVAL                  = 11
116
 
124
EMSGSIZE                = 12
117
; Error Codes
125
ENOMEM                  = 18