/*
* $Id: errinfo.h 1474 2007-01-09 15:35:52Z miconda $
*
* Copyright (C) 2006 Voice Sistem SRL
*
* This file is part of openser, a free SIP server.
*
* openser is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* openser 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _errinfo_h_
#define _errinfo_h_
#include "str.h"
/* error clases */
#define OSER_EC_PARSER 1 /* parse error */
#define OSER_EC_PMEMORY 2 /* private memory error */
#define OSER_EC_SMEMORY 3 /* share memory error */
#define OSER_EL_CRITIC 1
#define OSER_EL_HIGH 2
#define OSER_EL_MEDIUM 3 /* severity level normal - used by parsing errors */
#define OSER_EL_NORMAL 4
#define OSER_EL_LOW 5
typedef struct err_info_
{
int eclass; /* error class */
int level; /* severity level (lower is higher) */
str info; /* error details */
int rcode; /* recommended reply code */
str rreason; /* recommended reply reason phrase */
} err_info_t;
void init_err_info();
void set_err_info(int ec, int el, char *info);
void set_err_reply(int rc, char *rr);
err_info_t* get_err_info();
#endif
syntax highlighted by Code2HTML, v. 0.9.1