socketerrors.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:9k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer and/or licensor of the Original Code and owns the copyrights 
  21.  * in the portions it created.  
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. /*
  36.  * Copyright (c) 1982, 1986, 1989 Regents of the University of California.
  37.  * All rights reserved.
  38.  *
  39.  * Redistribution and use in source and binary forms, with or without
  40.  * modification, are permitted provided that the following conditions
  41.  * are met:
  42.  * 1. Redistributions of source code must retain the above copyright
  43.  *    notice, this list of conditions and the following disclaimer.
  44.  * 2. Redistributions in binary form must reproduce the above copyright
  45.  *    notice, this list of conditions and the following disclaimer in the
  46.  *    documentation and/or other materials provided with the distribution.
  47.  * 3. All advertising materials mentioning features or use of this software
  48.  *    must display the following acknowledgement:
  49.  * This product includes software developed by the University of
  50.  * California, Berkeley and its contributors.
  51.  * 4. Neither the name of the University nor the names of its contributors
  52.  *    may be used to endorse or promote products derived from this software
  53.  *    without specific prior written permission.
  54.  *
  55.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  56.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  57.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  58.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  59.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  60.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  61.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  62.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  63.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  64.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  65.  * SUCH DAMAGE.
  66.  *
  67.  * @(#)errno.h 7.13 (Berkeley) 2/19/91
  68.  */
  69. #ifndef __SOCKETERRS__
  70. #define __SOCKETERRS__
  71. #ifndef KERNEL
  72. extern int errno; /* global error number */
  73. #endif
  74. #undef ENOERR
  75. #undef EDOM
  76. #undef ERANGE
  77. #undef EFPOS
  78. #undef ESIGPARM
  79. #undef ENOMEM
  80. #undef EACCES
  81. #undef ENOENT
  82. #undef ENOSYS
  83. #define EPERM 1 /* Operation not permitted */
  84. #define ENOENT 2 /* No such file or directory */
  85. #define ESRCH 3 /* No such process */
  86. #define EINTR 4 /* Interrupted system call */
  87. #define EIO 5 /* Input/output error */
  88. #define ENXIO 6 /* Device not configured */
  89. #define E2BIG 7 /* Argument list too long */
  90. #define ENOEXEC 8 /* Exec format error */
  91. #define EBADF 9 /* Bad file descriptor */
  92. #define ECHILD 10 /* No child processes */
  93. #define EDEADLK 11 /* Resource deadlock avoided */
  94. /* 11 was EAGAIN */
  95. #define ENOMEM 12 /* Cannot allocate memory */
  96. #define EACCES 13 /* Permission denied */
  97. #define EFAULT 14 /* Bad address */
  98. #ifndef _POSIX_SOURCE
  99. #define ENOTBLK 15 /* Block device required */
  100. #define EBUSY 16 /* Device busy */
  101. #endif
  102. #define EEXIST 17 /* File exists */
  103. #define EXDEV 18 /* Cross-device link */
  104. #define ENODEV 19 /* Operation not supported by device */
  105. #define ENOTDIR 20 /* Not a directory */
  106. #define EISDIR 21 /* Is a directory */
  107. #define EINVAL 22 /* Invalid argument */
  108. #define ENFILE 23 /* Too many open files in system */
  109. #define EMFILE 24 /* Too many open files */
  110. #define ENOTTY 25 /* Inappropriate ioctl for device */
  111. #ifndef _POSIX_SOURCE
  112. #define ETXTBSY 26 /* Text file busy */
  113. #endif
  114. #define EFBIG 27 /* File too large */
  115. #define ENOSPC 28 /* No space left on device */
  116. #define ESPIPE 29 /* Illegal seek */
  117. #define EROFS 30 /* Read-only file system */
  118. #define EMLINK 31 /* Too many links */
  119. #define EPIPE 32 /* Broken pipe */
  120. #ifndef _MACINTOSH
  121. /* math software */
  122. #define EDOM 33 /* Numerical argument out of domain */
  123. #define ERANGE 34 /* Result too large */
  124. #endif
  125. /* non-blocking and interrupt i/o */
  126. #if !defined(macintosh) && !defined(_MACINTOSH)
  127. #define EAGAIN 35 /* Resource temporarily unavailable */
  128. #define EWOULDBLOCK EAGAIN /* Operation would block */
  129. #else
  130. #define EWOULDBLOCK 11 /* Operation would block */
  131. #endif
  132. #ifndef _POSIX_SOURCE
  133. #define EINPROGRESS 36 /* Operation now in progress */
  134. #define EALREADY 37 /* Operation already in progress */
  135. /* ipc/network software -- argument errors */
  136. #define ENOTSOCK 38 /* Socket operation on non-socket */
  137. #define EDESTADDRREQ 39 /* Destination address required */
  138. #define EMSGSIZE 40 /* Message too long */
  139. #define EPROTOTYPE 41 /* Protocol wrong type for socket */
  140. #define ENOPROTOOPT 42 /* Protocol not available */
  141. #define EPROTONOSUPPORT 43 /* Protocol not supported */
  142. #define ESOCKTNOSUPPORT 44 /* Socket type not supported */
  143. #define EOPNOTSUPP 45 /* Operation not supported on socket */
  144. #define EPFNOSUPPORT 46 /* Protocol family not supported */
  145. #define EAFNOSUPPORT 47 /* Address family not supported by protocol family */
  146. #define EADDRINUSE 48 /* Address already in use */
  147. #define EADDRNOTAVAIL 49 /* Can't assign requested address */
  148. /* ipc/network software -- operational errors */
  149. #define ENETDOWN 50 /* Network is down */
  150. #define ENETUNREACH 51 /* Network is unreachable */
  151. #define ENETRESET 52 /* Network dropped connection on reset */
  152. #define ECONNABORTED 53 /* Software caused connection abort */
  153. #define ECONNRESET 54 /* Connection reset by peer */
  154. #define ENOBUFS 55 /* No buffer space available */
  155. #define EISCONN 56 /* Socket is already connected */
  156. #define ENOTCONN 57 /* Socket is not connected */
  157. #define ESHUTDOWN 58 /* Can't send after socket shutdown */
  158. #define ETOOMANYREFS 59 /* Too many references: can't splice */
  159. #define ETIMEDOUT 60 /* Connection timed out */
  160. #define ECONNREFUSED 61 /* Connection refused */
  161. #define ELOOP 62 /* Too many levels of symbolic links */
  162. #endif /* _POSIX_SOURCE */
  163. #define ENAMETOOLONG 63 /* File name too long */
  164. /* should be rearranged */
  165. #ifndef _POSIX_SOURCE
  166. #define EHOSTDOWN 64 /* Host is down */
  167. #define EHOSTUNREACH 65 /* No route to host */
  168. #endif /* _POSIX_SOURCE */
  169. #define ENOTEMPTY 66 /* Directory not empty */
  170. /* quotas & mush */
  171. #ifndef _POSIX_SOURCE
  172. #define EPROCLIM 67 /* Too many processes */
  173. #define EUSERS 68 /* Too many users */
  174. #define EDQUOT 69 /* Disc quota exceeded */
  175. /* Network File System */
  176. #define ESTALE 70 /* Stale NFS file handle */
  177. #define EREMOTE 71 /* Too many levels of remote in path */
  178. #define EBADRPC 72 /* RPC struct is bad */
  179. #define ERPCMISMATCH 73 /* RPC version wrong */
  180. #define EPROGUNAVAIL 74 /* RPC prog. not avail */
  181. #define EPROGMISMATCH 75 /* Program version wrong */
  182. #define EPROCUNAVAIL 76 /* Bad procedure for program */
  183. #endif /* _POSIX_SOURCE */
  184. #define ENOLCK 77 /* No locks available */
  185. //#define ENOSYS 78 /* Function not implemented */
  186. #define EFTYPE 79 /* Inappropriate file type or format */
  187. #ifdef KERNEL
  188. /* pseudo-errors returned inside kernel to modify return to process */
  189. #define ERESTART -1 /* restart syscall */
  190. #define EJUSTRETURN -2 /* don't modify regs, just return */
  191. #endif
  192. #endif //__SOCKETERRS__