Module: sip-router Branch: master Commit: 9216f8c4005dc3e8ef9e31b9a3eb0bd9dc3840e9 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=9216f8c4...
Author: Andrei Pelinescu-Onciul andrei@iptel.org Committer: Andrei Pelinescu-Onciul andrei@iptel.org Date: Thu Jul 16 10:43:40 2009 +0200
xmlrpc(s): removed the introspection parameter
Removed the enable_introspection parameter. It's hard-wired to on and cannot be changed (the methods needed are always exported by the core).
---
modules_s/xmlrpc/xmlrpc.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/modules_s/xmlrpc/xmlrpc.c b/modules_s/xmlrpc/xmlrpc.c index ab80081..4f82b12 100644 --- a/modules_s/xmlrpc/xmlrpc.c +++ b/modules_s/xmlrpc/xmlrpc.c @@ -376,7 +376,6 @@ static rpc_t func_param; * will be available on the server. If set to 0 then the functions will be * disabled. */ -int enable_introspection = 1; static char* xmlrpc_route=0; /* default is the main route */
@@ -409,7 +408,6 @@ static cmd_export_t cmds[] = { * Exported parameters */ static param_export_t params[] = { - {"enable_introspection", PARAM_INT, &enable_introspection}, {"route", PARAM_STRING, &xmlrpc_route}, {"autoconversion", PARAM_INT, &autoconvert}, {0, 0, 0}