00001 /* 00002 * $Id: sl.h 4763 2008-08-28 14:35:03Z henningw $ 00003 * 00004 * Copyright (C) 2006 Voice Sistem 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 * History: 00023 * -------- 00024 * 2006-02-06 original version (bogdan) 00025 */ 00026 00027 /*! 00028 * \file 00029 * \brief SL::module definitions 00030 * \ingroup sl 00031 * - Module: \ref sl 00032 */ 00033 00034 #ifndef _SL_H_ 00035 #define _SL_H_ 00036 00037 #include "../../statistics.h" 00038 00039 /* module parameter */ 00040 extern int sl_enable_stats; 00041 00042 /* statistic variables */ 00043 extern stat_var *tx_1xx_rpls; 00044 extern stat_var *tx_2xx_rpls; 00045 extern stat_var *tx_3xx_rpls; 00046 extern stat_var *tx_4xx_rpls; 00047 extern stat_var *tx_5xx_rpls; 00048 extern stat_var *tx_6xx_rpls; 00049 extern stat_var *sent_rpls; 00050 extern stat_var *sent_err_rpls; 00051 extern stat_var *rcv_acks; 00052 00053 00054 #endif
1.5.6