blob: 62927ca94ed73bd2adc70240e67e618a99b22c84 [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001/* $Id$ */
2/*
3 * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com)
4 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
5 *
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
23#include <pjsip/sip_errno.h>
24
25PJ_BEGIN_DECL
26
27/**
28 * 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
33/************************************************************
34 * EVENT PACKAGE ERRORS
35 ***********************************************************/
36/**
37 * @hideinitializer
38 * No event package with the specified name.
39 */
40#define PJSIP_SIMPLE_ENOPKG (PJSIP_SIMPLE_ERRNO_START+1) /*270001*/
41/**
42 * @hideinitializer
43 * Event package already exists.
44 */
45#define PJSIP_SIMPLE_EPKGEXISTS (PJSIP_SIMPLE_ERRNO_START+2) /*270002*/
46
47
48/************************************************************
49 * PRESENCE ERROR
50 ***********************************************************/
51/**
52 * @hideinitializer
53 * Expecting SUBSCRIBE request
54 */
55#define PJSIP_SIMPLE_ENOTSUBSCRIBE (PJSIP_SIMPLE_ERRNO_START+20) /*270020*/
56/**
57 * @hideinitializer
58 * No presence associated with subscription
59 */
60#define PJSIP_SIMPLE_ENOPRESENCE (PJSIP_SIMPLE_ERRNO_START+21) /*270021*/
61/**
62 * @hideinitializer
63 * No presence info in server subscription
64 */
65#define PJSIP_SIMPLE_ENOPRESENCEINFO (PJSIP_SIMPLE_ERRNO_START+22) /*270022*/
66/**
67 * @hideinitializer
68 * Bad Content-Type
69 */
70#define PJSIP_SIMPLE_EBADCONTENT (PJSIP_SIMPLE_ERRNO_START+23) /*270023*/
71/**
72 * @hideinitializer
73 * Bad PIDF Message
74 */
75#define PJSIP_SIMPLE_EBADPIDF (PJSIP_SIMPLE_ERRNO_START+24) /*270024*/
76/**
77 * @hideinitializer
78 * Bad XPIDF Message
79 */
80#define PJSIP_SIMPLE_EBADXPIDF (PJSIP_SIMPLE_ERRNO_START+25) /*270025*/
81/**
82 * @hideinitializer
83 * Bad RPID Message
84 */
85#define PJSIP_SIMPLE_EBADRPID (PJSIP_SIMPLE_ERRNO_START+26) /*270026*/
86
87
88/************************************************************
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
97/**
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
116
117#endif /* __PJSIP_SIMPLE_ERRNO_H__ */
118