errno.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com)
  3. * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #ifndef __PJSIP_SIMPLE_ERRNO_H__
  20. #define __PJSIP_SIMPLE_ERRNO_H__
  21. #include <pjsip/sip_errno.h>
  22. PJ_BEGIN_DECL
  23. /**
  24. * Start of error code relative to PJ_ERRNO_START_USER.
  25. */
  26. #define PJSIP_SIMPLE_ERRNO_START (PJ_ERRNO_START_USER + PJ_ERRNO_SPACE_SIZE*2)
  27. /************************************************************
  28. * EVENT PACKAGE ERRORS
  29. ***********************************************************/
  30. /**
  31. * @hideinitializer
  32. * No event package with the specified name.
  33. */
  34. #define PJSIP_SIMPLE_ENOPKG (PJSIP_SIMPLE_ERRNO_START+1) /*270001*/
  35. /**
  36. * @hideinitializer
  37. * Event package already exists.
  38. */
  39. #define PJSIP_SIMPLE_EPKGEXISTS (PJSIP_SIMPLE_ERRNO_START+2) /*270002*/
  40. /************************************************************
  41. * PRESENCE ERROR
  42. ***********************************************************/
  43. /**
  44. * @hideinitializer
  45. * Expecting SUBSCRIBE request
  46. */
  47. #define PJSIP_SIMPLE_ENOTSUBSCRIBE (PJSIP_SIMPLE_ERRNO_START+20) /*270020*/
  48. /**
  49. * @hideinitializer
  50. * No presence associated with subscription
  51. */
  52. #define PJSIP_SIMPLE_ENOPRESENCE (PJSIP_SIMPLE_ERRNO_START+21) /*270021*/
  53. /**
  54. * @hideinitializer
  55. * No presence info in server subscription
  56. */
  57. #define PJSIP_SIMPLE_ENOPRESENCEINFO (PJSIP_SIMPLE_ERRNO_START+22) /*270022*/
  58. /**
  59. * @hideinitializer
  60. * Bad Content-Type
  61. */
  62. #define PJSIP_SIMPLE_EBADCONTENT (PJSIP_SIMPLE_ERRNO_START+23) /*270023*/
  63. /**
  64. * @hideinitializer
  65. * Bad PIDF Message
  66. */
  67. #define PJSIP_SIMPLE_EBADPIDF (PJSIP_SIMPLE_ERRNO_START+24) /*270024*/
  68. /**
  69. * @hideinitializer
  70. * Bad XPIDF Message
  71. */
  72. #define PJSIP_SIMPLE_EBADXPIDF (PJSIP_SIMPLE_ERRNO_START+25) /*270025*/
  73. /**
  74. * @hideinitializer
  75. * Bad RPID Message
  76. */
  77. #define PJSIP_SIMPLE_EBADRPID (PJSIP_SIMPLE_ERRNO_START+26) /*270026*/
  78. /************************************************************
  79. * ISCOMPOSING ERRORS
  80. ***********************************************************/
  81. /**
  82. * @hideinitializer
  83. * Bad isComposing XML message.
  84. */
  85. #define PJSIP_SIMPLE_EBADISCOMPOSE (PJSIP_SIMPLE_ERRNO_START+40) /*270040*/
  86. /**
  87. * Get error message for the specified error code. Note that this
  88. * function is only able to decode PJSIP-SIMPLE specific error code.
  89. * Application should use pj_strerror(), which should be able to
  90. * decode all error codes belonging to all subsystems (e.g. pjlib,
  91. * pjmedia, pjsip, etc).
  92. *
  93. * @param status The error code.
  94. * @param buffer The buffer where to put the error message.
  95. * @param bufsize Size of the buffer.
  96. *
  97. * @return The error message as NULL terminated string,
  98. * wrapped with pj_str_t.
  99. */
  100. PJ_DECL(pj_str_t) pjsipsimple_strerror(pj_status_t status,
  101. char *buffer, pj_size_t bufsize);
  102. PJ_END_DECL
  103. #endif /* __PJSIP_SIMPLE_ERRNO_H__ */