00001 /* 00002 * extra.h 00003 * 00004 * Copyright (C) 2008 Juha Heinanen <jh@tutpro.com> 00005 * 00006 * This file is part of Kamailio, a free SIP server. 00007 * 00008 * Kamailio is free software; you can redistribute it and/or modify 00009 * it under the terms of the GNU General Public License as published by 00010 * the Free Software Foundation; either version 2 of the License, or 00011 * (at your option) any later version 00012 * 00013 * Kamailio is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU General Public License 00019 * along with this program; if not, write to the Free Software 00020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00021 * 00022 */ 00023 00024 #ifndef _MISC_RADIUS_EXTRA_H_ 00025 #define _MISC_RADIUS_EXTRA_H_ 00026 00027 #include "../../str.h" 00028 #include "../../pvar.h" 00029 #include "../../parser/msg_parser.h" 00030 #include "../../radius.h" 00031 00032 struct extra_attr { 00033 str name; 00034 pv_spec_t spec; 00035 struct extra_attr *next; 00036 }; 00037 00038 #define MAX_EXTRA 4 00039 00040 void init_extra_engine(void); 00041 00042 struct extra_attr *parse_extra_str(char *extra); 00043 00044 void destroy_extras(struct extra_attr *extra); 00045 00046 int extra2strar(struct extra_attr *extra, struct sip_msg *rq, str *val_arr); 00047 00048 int extra2attrs(struct extra_attr *extra, struct attr *attrs, int offset); 00049 00050 #endif
1.5.6