00001 /* 00002 * $Id: utilities.h 5299 2008-12-04 18:12:33Z 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, utilities 00033 * 00034 * This file was created to group together utility functions that were useful 00035 * throughout the SNMPStats module, without belonging to any file in particular. 00036 * \ingroup snmpstats 00037 * - Module: \ref snmpstats 00038 */ 00039 00040 00041 #ifndef _SNMP_UTILITIES_ 00042 #define _SNMP_UTILITIES_ 00043 00044 #include <time.h> 00045 00046 #include "../../str.h" 00047 #include "../../sr_module.h" 00048 00049 /*! 00050 * This function copies an OpenSER "str" datatype into a '\\0' terminated char* 00051 * string. 00052 * 00053 * \note Make sure to free the memory allocated to *copiedString, when you no 00054 * longer have any use for it. (It is allocated with shm_malloc(), so make 00055 * sure to deallocate it with shm_free()) 00056 */ 00057 int convertStrToCharString(str *strToConvert, char **copiedString); 00058 00059 /*! Performs sanity checks on the parameters passed to a string configuration 00060 * file parameter handler. */ 00061 int stringHandlerSanityCheck( modparam_t type, void *val, char *parameterName); 00062 00063 /*! 00064 * This function is a wrapper around the standard statistic framework. It will 00065 * return the value of the statistic denoted with statName, or zero if the 00066 * statistic was not found. 00067 */ 00068 int get_statistic(char *statName); 00069 00070 /*! Returns a pointer to an SNMP DateAndTime OCTET STRING representation of the 00071 * time structure. Note that the pointer is to static data, so it shouldn't be 00072 * counted on to be around if this function is called again. */ 00073 char * convertTMToSNMPDateAndTime(struct tm *timeStructure); 00074 00075 #endif
1.5.6