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

📄 ospfail.h

📁 mgcp协议源代码。支持多种编码:g711
💻 H
字号:
/**########################################################################*########################################################################*########################################################################*                                                               *   COPYRIGHT (c) 1998, 1999 by TransNexus, LLC                          *                                                                    *   This software contains proprietary and confidential information  *   of TransNexus, LLC. Except as may be set forth in the license    *   agreement under which this software is supplied, use, disclosure, *   or reproduction is prohibited without the prior, express, written*   consent of TransNexus, LLC.                                      *                                     *******#########################################################################*#########################################################################*#########################################################################*//* * ospfail.h - Structures and prototypes for linked lists. */#ifndef _OSP_FAIL_H#define _OSP_FAIL_H#include "osp.h"enum OSPEFAILREASON{    OSPC_FAIL_NONE=0,                    /* no failure (call successful) 1*/    OSPC_FAIL_LUSER_DISC=101,                   /* local user disconnect 2*/    OSPC_FAIL_LUSER_ADMIN=180,   /* admin. failure prior to local system 3*/    OSPC_FAIL_LOCAL_NORSRC=201,          /* insufficient local resources 4*/    OSPC_FAIL_LOCAL_NOAUTH=202,        /* inadequate local authorisation 5*/    OSPC_FAIL_LOCAL_BADAUTH=203,    /* inappropriate local authorisation 6*/    OSPC_FAIL_LOCAL_BADROUTE=204,   /* bad call routing for local system 7*/    OSPC_FAIL_LOCAL_ADMIN=280,         /* admin. failure in local system 8*/    OSPC_FAIL_NET_UNREACH=301,                /* destination unreachable 9*/    OSPC_FAIL_NET_BADPATH=302,             /* inappropriate network path10*/    OSPC_FAIL_NET_BADPERF=303,         /* inadequate network performance11*/    OSPC_FAIL_NET_ADMIN=380,           /* admin. failure between systems12*/    OSPC_FAIL_REMOTE_GENERAL=410,          /* generic call setup failure13*/    OSPC_FAIL_REMOTE_NORESP=411,       /* no response from remote system14*/    OSPC_FAIL_REMOTE_TCPFIN=412,               /* TCP connection refused15*/    OSPC_FAIL_REMOTE_BADSEC=413,     /* incompatible security parameters16*/    OSPC_FAIL_REMOTE_BADCOMM=414,       /* incompatible comm. parameters17*/    OSPC_FAIL_REMOTE_REFUSE=415,       /* setup refused by remote system18*/    OSPC_FAIL_REMOTE_NORSRC=420,        /* insufficient remote resources19*/    OSPC_FAIL_REMOTE_INT=421,          /* internal resources unavailable20*/    OSPC_FAIL_REMOTE_EXT=422,          /* external resources unavailable21*/    OSPC_FAIL_ADMIN=480,             /* admin. failure in remote systems22*/    OSPC_FAIL_RUSER_BUSY=501,                        /* remote user busy23*/    OSPC_FAIL_RUSER_NETBUSY=502,      /* remote network busy (fast busy)24*/    OSPC_FAIL_RUSER_UNAVAIL=503,  /* remote user unavailable (no answer)25*/    OSPC_FAIL_RUSER_DISC=504,                  /* remote user disconnect26*/    OSPC_FAIL_RUSER_ADMIN=580, /* admin. failure external to remote sys.27*/    OSPC_FAIL_GENERAL=999                             /* generic failure28*/};int OSPPFailReasonFind(enum OSPEFAILREASON ospvFailureReason);#endif

⌨️ 快捷键说明

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