00001 /* 00002 * $Id: sub_agent.h 4764 2008-08-28 14:41:06Z henningw $ 00003 * 00004 * SNMPStats Module 00005 * Copyright (C) 2006 SOMA Networks, INC. 00006 * Written by: Jeffrey Magder (jmagder@somanetworks.com) 00007 * 00008 * This file is part of Kamailio, a free SIP server. 00009 * 00010 * Kamailio is free software; you can redistribute it and/or modify it 00011 * under the terms of the GNU General Public License as published by 00012 * the Free Software Foundation; either version 2 of the License, or 00013 * (at your option) any later version 00014 * 00015 * Kamailio is distributed in the hope that it will be useful, but 00016 * WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 * General Public License for more details. 00019 * 00020 * You should have received a copy of the GNU General Public License 00021 * along with this program; if not, write to the Free Software 00022 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00023 * USA 00024 * 00025 * History: 00026 * -------- 00027 * 2006-11-23 initial version (jmagder) 00028 */ 00029 00030 /*! 00031 * \file 00032 * \brief SNMP statistic module, master agent connection 00033 * 00034 * This file defines all functions required to establish a relationship with a 00035 * master agent. 00036 * \ingroup snmpstats 00037 * - Module: \ref snmpstats 00038 */ 00039 00040 #ifndef _SNMPSTATS_SUB_AGENT_ 00041 #define _SNMPSTATS_SUB_AGENT_ 00042 00043 #define AGENT_PROCESS_NAME "snmpstats_sub_agent" 00044 00045 /*! Run the AgentX sub-agent as a separate process. The child will 00046 * insulate itself from the rest of OpenSER by overriding most of signal 00047 * handlers. */ 00048 void agentx_child(int rank); 00049 00050 /*! This function opens up a connection with the master agent specified in 00051 * the snmpstats modules configuration file */ 00052 void register_with_master_agent(char *name_to_register_under); 00053 00054 #endif
1.5.6