⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 su_errno.h

📁 this is simple sip stack.
💻 H
字号:
/* * This file is part of the Sofia-SIP package * * Copyright (C) 2005 Nokia Corporation. * * Contact: Pekka Pessi <pekka.pessi@nokia.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA * */#ifndef SU_ERRNO_H/** Defined when <sofia-sip/su_errno.h> has been included. */#define SU_ERRNO_H/**@file sofia-sip/su_errno.h Errno handling * * Source-code compatibility with Windows (having separate errno for * socket library and C libraries). * * @author Pekka Pessi <Pekka.Pessi@nokia.com> *  * @date Created: Thu Dec 22 18:16:06 EET 2005 pessi */#ifndef SU_CONFIG_H#include "sofia-sip/su_config.h"#endif#include <errno.h>SOFIA_BEGIN_DECLS/** Return string describing su error code. */SOFIAPUBFUN char const *su_strerror(int e);/** The latest su error. */SOFIAPUBFUN int su_errno(void);/** Set the su error. */SOFIAPUBFUN int su_seterrno(int);#if !SU_HAVE_WINSOCK#define su_errno() (errno)#define su_seterrno(n) ((errno = (n)), -1)#endif#if defined(__APPLE_CC__)#ifndef EBADMSG#define EBADMSG EFAULT#endif#ifndef EPROTO#define EPROTO EPROTOTYPE#endif#ifndef EBADMSG#define EBADMSG EFAULT#endif#endif#if defined(_WIN32)#ifndef EWOULDBLOCK#define EWOULDBLOCK  (10035) /* WSAEWOULDBLOCK */#endif#ifndef EINPROGRESS#define EINPROGRESS  (10036) /* WSAEINPROGRESS */#endif#ifndef EALREADY#define EALREADY (10037) /* WSAEALREADY */#endif#ifndef ENOTSOCK#define ENOTSOCK (10038) /* WSAENOTSOCK */#endif#ifndef EDESTADDRREQ#define EDESTADDRREQ (10039) /* WSAEDESTADDRREQ */#endif#ifndef EMSGSIZE#define EMSGSIZE (10040) /* WSAEMSGSIZE */#endif#ifndef EPROTOTYPE#define EPROTOTYPE (10041) /* WSAEPROTOTYPE */#endif#ifndef ENOPROTOOPT#define ENOPROTOOPT (10042) /* WSAENOPROTOOPT */#endif#ifndef EPROTONOSUPPORT#define EPROTONOSUPPORT (10043) /* WSAEPROTONOSUPPORT */#endif#ifndef ESOCKTNOSUPPORT#define ESOCKTNOSUPPORT (10044) /* WSAESOCKTNOSUPPORT */#endif#ifndef EOPNOTSUPP#define EOPNOTSUPP (10045) /* WSAEOPNOTSUPP */#endif#ifndef EPFNOSUPPORT#define EPFNOSUPPORT (10046) /* WSAEPFNOSUPPORT */#endif#ifndef EAFNOSUPPORT#define EAFNOSUPPORT (10047) /* WSAEAFNOSUPPORT */#endif#ifndef EADDRINUSE#define EADDRINUSE (10048) /* WSAEADDRINUSE */#endif#ifndef EADDRNOTAVAIL#define EADDRNOTAVAIL (10049) /* WSAEADDRNOTAVAIL */#endif#ifndef ENETDOWN#define ENETDOWN (10050) /* WSAENETDOWN */#endif#ifndef ENETUNREACH#define ENETUNREACH (10051) /* WSAENETUNREACH */#endif#ifndef ENETRESET#define ENETRESET (10052) /* WSAENETRESET */#endif#ifndef ECONNABORTED#define ECONNABORTED (10053) /* WSAECONNABORTED */#endif#ifndef ECONNRESET#define ECONNRESET (10054) /* WSAECONNRESET */#endif#ifndef ENOBUFS#define ENOBUFS (10055) /* WSAENOBUFS */#endif#ifndef EISCONN#define EISCONN (10056) /* WSAEISCONN */#endif#ifndef ENOTCONN#define ENOTCONN (10057) /* WSAENOTCONN */#endif#ifndef ESHUTDOWN#define ESHUTDOWN (10058) /* WSAESHUTDOWN */#endif#ifndef ETOOMANYREFS#define ETOOMANYREFS (10059) /* WSAETOOMANYREFS */#endif#ifndef ETIMEDOUT#define ETIMEDOUT (10060) /* WSAETIMEDOUT */#endif#ifndef ECONNREFUSED#define ECONNREFUSED (10061) /* WSAECONNREFUSED */#endif#ifndef ELOOP#define ELOOP (10062) /* WSAELOOP */#endif#ifndef ENAMETOOLONG#define ENAMETOOLONG (10063) /* WSAENAMETOOLONG */#endif#ifndef EHOSTDOWN#define EHOSTDOWN (10064) /* WSAEHOSTDOWN */#endif#ifndef EHOSTUNREACH#define EHOSTUNREACH (10065) /* WSAEHOSTUNREACH */#endif#ifndef ENOTEMPTY#define ENOTEMPTY (10066) /* WSAENOTEMPTY */#endif#ifndef EPROCLIM#define EPROCLIM (10067) /* WSAEPROCLIM */#endif#ifndef EUSERS#define EUSERS (10068) /* WSAEUSERS */#endif#ifndef EDQUOT#define EDQUOT (10069) /* WSAEDQUOT */#endif#ifndef ESTALE#define ESTALE (10070) /* WSAESTALE */#endif#ifndef EREMOTE#define EREMOTE (10071) /* WSAEREMOTE */#endif#ifndef EBADMSG#  if defined(WSABADMSG)#    define EBADMSG (WSAEBADMSG)#  else#    define EBADMSG (20005)#  endif#endif#ifndef EPROTO#  if defined(WSAEPROTO)#    define EPROTO WSAEPROTO#  else#    define EPROTO (20006)#  endif#endif#endifSOFIA_END_DECLS#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -