1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
/*
* $Id$
*
* Enum module
*
* Copyright (C) 2002-2008 Juha Heinanen
*
* This file is part of Kamailio, a free SIP server.
*
* Kamailio 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
*
* Kamailio 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* History:
* -------
* 2003-03-11: New module interface (janakj)
* 2003-03-16: flags export parameter added (janakj)
* 2003-12-15: added suffix parameter to enum_query (jh)
*/
/*!
* \file
* \brief SIP-router enum :: Enum and E164 related functions
* \ingroup enum
* Module: \ref enum
*/
#include "enum_mod.h"
#include <stdio.h>
#include <stdlib.h>
#include "../../sr_module.h"
#include "../../error.h"
#include "../../mod_fix.h"
#include "enum.h"
MODULE_VERSION
/*
* Module parameter variables
*/
str suffix = str_init("e164.arpa.");
str param = str_init("");
str i_branchlabel = str_init("i");
str i_suffix = str_init("e164.arpa.");
str i_bl_alg = str_init("cc");
str service = {0,0};
/*
* Exported functions
*/
static cmd_export_t cmds[] = {
{"enum_query", (cmd_function)enum_query_0, 0, 0, 0, REQUEST_ROUTE},
{"enum_query", (cmd_function)enum_query_1, 1, fixup_spve_null, 0,
REQUEST_ROUTE},
{"enum_query", (cmd_function)enum_query_2, 2, fixup_spve_str, 0,
REQUEST_ROUTE},
{"enum_pv_query", (cmd_function)enum_pv_query_1, 1, fixup_pvar_null,
fixup_free_pvar_null, REQUEST_ROUTE},
{"enum_pv_query", (cmd_function)enum_pv_query_2, 2, fixup_pvar_str,
fixup_free_pvar_str, REQUEST_ROUTE},
{"enum_pv_query", (cmd_function)enum_pv_query_3, 3,
fixup_pvar_str_str, fixup_free_pvar_str_str, REQUEST_ROUTE},
{"is_from_user_enum", (cmd_function)is_from_user_enum_0, 0, 0, 0,
REQUEST_ROUTE},
{"is_from_user_enum", (cmd_function)is_from_user_enum_1, 1,
fixup_str_null, fixup_free_str_null, REQUEST_ROUTE},
{"is_from_user_enum", (cmd_function)is_from_user_enum_2, 2,
fixup_str_str, fixup_free_str_str, REQUEST_ROUTE},
{"i_enum_query", (cmd_function)i_enum_query_0, 0, 0, 0, REQUEST_ROUTE},
{"i_enum_query", (cmd_function)i_enum_query_1, 1, fixup_str_null, 0,
REQUEST_ROUTE},
{"i_enum_query", (cmd_function)i_enum_query_2, 2, fixup_str_str, 0,
REQUEST_ROUTE},
{0, 0, 0, 0, 0, 0}
};
/*
* Exported parameters
*/
static param_export_t params[] = {
{"domain_suffix", PARAM_STR, &suffix},
{"tel_uri_params", PARAM_STR, ¶m},
{"branchlabel", PARAM_STR, &i_branchlabel},
{"i_enum_suffix", PARAM_STR, &i_suffix},
{"bl_algorithm", PARAM_STR, &i_bl_alg},
{0, 0, 0}
};
/*
* Module parameter variables
*/
struct module_exports exports = {
"enum",
DEFAULT_DLFLAGS, /* dlopen flags */
cmds, /* Exported functions */
params, /* Exported parameters */
0, /* exported statistics */
0, /* exported MI functions */
0, /* exported pseudo-variables */
0, /* extra processes */
0, /* module initialization function */
0, /* response function*/
0, /* destroy function */
0 /* per-child init function */
};
|