comparison extensions/dbg_dict_dump/dbg_dict_dump.c @ 1436:ad50ef2eddea

dbg_dict_dump: new extension to dump dictionary when loaded Add extension dbg_dict_dump to log the dictionary when loaded. Remove debug code in extension dict_dcca_3gpp to log the vendor dictionary if the config file is the word "dumpdict" that I added on 2020-02-19.
author Luke Mewburn <luke@mewburn.net>
date Tue, 25 Feb 2020 09:45:15 +1100
parents
children c25dea477d6a
comparison
equal deleted inserted replaced
1435:4bd30996ad7f 1436:ad50ef2eddea
1 /*********************************************************************************************************
2 * Software License Agreement (BSD License) *
3 * Author: Luke Mewburn <luke@mewburn.net> *
4 * *
5 * Copyright (c) 2020, WIDE Project and NICT *
6 * All rights reserved. *
7 * *
8 * Redistribution and use of this software in source and binary forms, with or without modification, are *
9 * permitted provided that the following conditions are met: *
10 * *
11 * * Redistributions of source code must retain the above *
12 * copyright notice, this list of conditions and the *
13 * following disclaimer. *
14 * *
15 * * Redistributions in binary form must reproduce the above *
16 * copyright notice, this list of conditions and the *
17 * following disclaimer in the documentation and/or other *
18 * materials provided with the distribution. *
19 * *
20 * * Neither the name of the WIDE Project or NICT nor the *
21 * names of its contributors may be used to endorse or *
22 * promote products derived from this software without *
23 * specific prior written permission of WIDE Project and *
24 * NICT. *
25 * *
26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED *
27 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
28 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR *
29 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT *
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS *
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR *
32 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF *
33 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
34 *********************************************************************************************************/
35
36 /* This extension logs a dump of the global dictionary */
37
38 #include <freeDiameter/extension.h>
39
40 static int dbg_dict_dump_entry(char * conffile)
41 {
42 TRACE_ENTRY("%p", conffile);
43
44 char * tbuf = NULL; size_t tbuflen = 0;
45 LOG_N("Dumping dictionary information");
46 LOG_N("%s", fd_dict_dump(&tbuf, &tbuflen, NULL, fd_g_config->cnf_dict));
47 free(tbuf);
48
49 LOG_N("Dictionary dumped");
50
51 return 0;
52 }
53
54 void fd_ext_fini(void)
55 {
56 TRACE_ENTRY();
57
58 /* Nothing to do */
59 return;
60 }
61
62 EXTENSION_ENTRY("dbg_dict_dump", dbg_dict_dump_entry);
"Welcome to our mercurial repository"