blob: 62927ca94ed73bd2adc70240e67e618a99b22c84 [file] [log] [blame]
Benny Prijono834aee32006-02-19 01:38:06 +00001/* $Id$ */
2/*
Nanang Izzuddina62ffc92011-05-05 06:14:19 +00003 * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com)
Benny Prijono32177c02008-06-20 22:44:47 +00004 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
Benny Prijono834aee32006-02-19 01:38:06 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#ifndef __PJSIP_SIMPLE_ERRNO_H__
21#define __PJSIP_SIMPLE_ERRNO_H__
22
Benny Prijono834aee32006-02-19 01:38:06 +000023#include <pjsip/sip_errno.h>
24
Benny Prijono1f61a8f2007-08-16 10:11:44 +000025PJ_BEGIN_DECL
26
Benny Prijono834aee32006-02-19 01:38:06 +000027/**
Benny Prijono26ff9062006-02-21 23:47:00 +000028 * Start of error code relative to PJ_ERRNO_START_USER.
29 */
30#define PJSIP_SIMPLE_ERRNO_START (PJ_ERRNO_START_USER + PJ_ERRNO_SPACE_SIZE*2)
31
32
Benny Prijonob0808372006-03-02 21:18:58 +000033/************************************************************
34 * EVENT PACKAGE ERRORS
35 ***********************************************************/
Benny Prijono26ff9062006-02-21 23:47:00 +000036/**
Benny Prijono834aee32006-02-19 01:38:06 +000037 * @hideinitializer
38 * No event package with the specified name.
39 */
Benny Prijono26ff9062006-02-21 23:47:00 +000040#define PJSIP_SIMPLE_ENOPKG (PJSIP_SIMPLE_ERRNO_START+1) /*270001*/
Benny Prijono834aee32006-02-19 01:38:06 +000041/**
42 * @hideinitializer
43 * Event package already exists.
44 */
Benny Prijono26ff9062006-02-21 23:47:00 +000045#define PJSIP_SIMPLE_EPKGEXISTS (PJSIP_SIMPLE_ERRNO_START+2) /*270002*/
Benny Prijono834aee32006-02-19 01:38:06 +000046
47
Benny Prijonob0808372006-03-02 21:18:58 +000048/************************************************************
49 * PRESENCE ERROR
50 ***********************************************************/
Benny Prijono834aee32006-02-19 01:38:06 +000051/**
52 * @hideinitializer
53 * Expecting SUBSCRIBE request
54 */
Benny Prijono26ff9062006-02-21 23:47:00 +000055#define PJSIP_SIMPLE_ENOTSUBSCRIBE (PJSIP_SIMPLE_ERRNO_START+20) /*270020*/
Benny Prijono834aee32006-02-19 01:38:06 +000056/**
57 * @hideinitializer
58 * No presence associated with subscription
59 */
Benny Prijono26ff9062006-02-21 23:47:00 +000060#define PJSIP_SIMPLE_ENOPRESENCE (PJSIP_SIMPLE_ERRNO_START+21) /*270021*/
Benny Prijono834aee32006-02-19 01:38:06 +000061/**
62 * @hideinitializer
63 * No presence info in server subscription
64 */
Benny Prijono26ff9062006-02-21 23:47:00 +000065#define PJSIP_SIMPLE_ENOPRESENCEINFO (PJSIP_SIMPLE_ERRNO_START+22) /*270022*/
Benny Prijono834aee32006-02-19 01:38:06 +000066/**
67 * @hideinitializer
68 * Bad Content-Type
69 */
Benny Prijono26ff9062006-02-21 23:47:00 +000070#define PJSIP_SIMPLE_EBADCONTENT (PJSIP_SIMPLE_ERRNO_START+23) /*270023*/
Benny Prijono834aee32006-02-19 01:38:06 +000071/**
72 * @hideinitializer
73 * Bad PIDF Message
74 */
Benny Prijono26ff9062006-02-21 23:47:00 +000075#define PJSIP_SIMPLE_EBADPIDF (PJSIP_SIMPLE_ERRNO_START+24) /*270024*/
Benny Prijono834aee32006-02-19 01:38:06 +000076/**
77 * @hideinitializer
78 * Bad XPIDF Message
79 */
Benny Prijono26ff9062006-02-21 23:47:00 +000080#define PJSIP_SIMPLE_EBADXPIDF (PJSIP_SIMPLE_ERRNO_START+25) /*270025*/
Benny Prijono4461c7d2007-08-25 13:36:15 +000081/**
82 * @hideinitializer
83 * Bad RPID Message
84 */
85#define PJSIP_SIMPLE_EBADRPID (PJSIP_SIMPLE_ERRNO_START+26) /*270026*/
Benny Prijono834aee32006-02-19 01:38:06 +000086
87
Benny Prijonob0808372006-03-02 21:18:58 +000088/************************************************************
89 * ISCOMPOSING ERRORS
90 ***********************************************************/
91/**
92 * @hideinitializer
93 * Bad isComposing XML message.
94 */
95#define PJSIP_SIMPLE_EBADISCOMPOSE (PJSIP_SIMPLE_ERRNO_START+40) /*270040*/
96
Benny Prijono1f61a8f2007-08-16 10:11:44 +000097/**
98 * Get error message for the specified error code. Note that this
99 * function is only able to decode PJSIP-SIMPLE specific error code.
100 * Application should use pj_strerror(), which should be able to
101 * decode all error codes belonging to all subsystems (e.g. pjlib,
102 * pjmedia, pjsip, etc).
103 *
104 * @param status The error code.
105 * @param buffer The buffer where to put the error message.
106 * @param bufsize Size of the buffer.
107 *
108 * @return The error message as NULL terminated string,
109 * wrapped with pj_str_t.
110 */
111PJ_DECL(pj_str_t) pjsipsimple_strerror(pj_status_t status,
112 char *buffer, pj_size_t bufsize);
113
114
115PJ_END_DECL
Benny Prijono834aee32006-02-19 01:38:06 +0000116
117#endif /* __PJSIP_SIMPLE_ERRNO_H__ */
118