1 Star 0 Fork 0

souhoiryo / opensips

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
core_stats.h 2.10 KB
一键复制 编辑 原始数据 按行查看 历史
/*
* $Id$
*
* Copyright (C) 2006 Voice Sistem SRL
*
* This file is part of opensips, a free SIP server.
*
* opensips 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.
*
* opensips 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.
*
* History:
* ---------
* 2006-01-23 first version (bogdan)
* 2006-11-28 Added statistics for the number of bad URI's, methods, and
* proxy requests (Jeffrey Magder - SOMA Networks)
* 2009-04-23 NET and PKG statistics added (bogdan)
*/
/*!
* \file
* \brief OpenSIPS statistics
*/
#ifndef _CORE_STATS_H_
#define _CORE_STATS_H_
#include "mem/mem.h"
#include "statistics.h"
#ifdef STATISTICS
extern stat_export_t core_stats[];
extern stat_export_t net_stats[];
/*! \brief received requests */
extern stat_var* rcv_reqs;
/*! \brief received replies */
extern stat_var* rcv_rpls;
/*! \brief forwarded requests */
extern stat_var* fwd_reqs;
/*! \brief forwarded replies */
extern stat_var* fwd_rpls;
/*! \brief dropped requests */
extern stat_var* drp_reqs;
/*! \brief dropped replies */
extern stat_var* drp_rpls;
/*! \brief error requests */
extern stat_var* err_reqs;
/*! \brief error replies */
extern stat_var* err_rpls;
/*! \brief Set in parse_uri() */
extern stat_var* bad_URIs;
/*! \brief Set in parse_method() */
extern stat_var* unsupported_methods;
/*! \brief Set in get_hdr_field(). */
extern stat_var* bad_msg_hdr;
#ifdef PKG_MALLOC
int init_pkg_stats(int no_procs);
pkg_status_holder* get_pkg_status_holder(int proc_id);
#endif
#endif /*STATISTICS*/
#endif /*_CORE_STATS_H_*/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/maplerain/opensips.git
git@gitee.com:maplerain/opensips.git
maplerain
opensips
opensips
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891