modules_k/siputils/config.h

Go to the documentation of this file.
00001 /*
00002  * $Id$
00003  *
00004  * SIP-router is distributed in the hope that it will be useful,
00005  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00006  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00007  * GNU General Public License for more details.
00008  *
00009  * You should have received a copy of the GNU General Public License 
00010  * along with this program; if not, write to the Free Software 
00011  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00012  */
00013 
00021 #ifndef _SIPUTILS_CONFIG_H
00022 #define _SIPUTILS_CONFIG_H
00023 
00024 
00025 #include "../../cfg/cfg.h"
00026 #include "../../str.h"
00027 
00028 struct cfg_group_siputils {
00029         unsigned int    ring_timeout;
00030 };
00031 
00032 extern struct cfg_group_siputils        default_siputils_cfg;
00033 extern void     *siputils_cfg;
00034 extern cfg_def_t        siputils_cfg_def[];
00035 
00036 int ring_timeout_fixup(void*, str*, str*, void**);
00037 
00038 #endif