mirror of https://github.com/sipwise/kamailio.git
parent
a10b7fe02a
commit
b9ee1b0b25
@ -0,0 +1,55 @@
|
||||
|
||||
/*
|
||||
* $Id$
|
||||
*
|
||||
* Copyright (C) 2013 mariuszbi@gmail.com
|
||||
*
|
||||
* Permission to use, copy, modify, and distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
/*
|
||||
* DNS wrappers
|
||||
*/
|
||||
/*
|
||||
* History:
|
||||
* --------
|
||||
* 2013-03 initial version (marius)
|
||||
*/
|
||||
|
||||
#include "dns_func.h"
|
||||
|
||||
#include <netinet/in.h>
|
||||
#include <resolv.h>
|
||||
#include <sys/types.h>
|
||||
#include <netdb.h>
|
||||
|
||||
struct hostent;
|
||||
|
||||
struct dns_func_t dns_func = {
|
||||
res_init,
|
||||
res_search,
|
||||
gethostbyname,
|
||||
#ifdef HAVE_GETHOSTBYNAME2
|
||||
gethostbyname2
|
||||
#else
|
||||
NULL
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
void load_dnsfunc(struct dns_func_t *d) {
|
||||
dns_func.sr_res_init = d->sr_res_init;
|
||||
dns_func.sr_res_search = d->sr_res_search;
|
||||
dns_func.sr_gethostbyname = d->sr_gethostbyname;
|
||||
dns_func.sr_gethostbyname2 = d->sr_gethostbyname2;
|
||||
}
|
||||
|
@ -0,0 +1,55 @@
|
||||
/*
|
||||
* $Id$
|
||||
*
|
||||
* Copyright (C) 2013 mariuszbi@gmail.com
|
||||
*
|
||||
* Permission to use, copy, modify, and distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
* copyright notice and this permission notice appear in all copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
/*
|
||||
* DNS Wrapper functions
|
||||
*/
|
||||
/*
|
||||
* History:
|
||||
* --------
|
||||
* 2013-03 initial version (marius)
|
||||
*/
|
||||
|
||||
#ifndef DNS_FUNC_H
|
||||
#define DNS_FUNC_H
|
||||
|
||||
#include <sys/socket.h>
|
||||
|
||||
struct hostent;
|
||||
|
||||
typedef int (*res_init_t)(void);
|
||||
typedef int (*res_search_t)(const char*, int, int, unsigned char*, int);
|
||||
typedef struct hostent* (*gethostbyname_t)(const char*);
|
||||
typedef struct hostent* (*gethostbyname2_t)(const char*, int);
|
||||
|
||||
struct dns_func_t {
|
||||
res_init_t sr_res_init;
|
||||
res_search_t sr_res_search;
|
||||
gethostbyname_t sr_gethostbyname;
|
||||
gethostbyname2_t sr_gethostbyname2;
|
||||
};
|
||||
|
||||
/*
|
||||
* initiate structure with system values
|
||||
*/
|
||||
//extern struct dns_func_t dns_func;
|
||||
|
||||
extern
|
||||
void load_dnsfunc(struct dns_func_t *d);
|
||||
|
||||
|
||||
#endif
|
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.carrierroute">
|
||||
<title>
|
||||
RPC Exports for carrierroute
|
||||
</title>
|
||||
|
||||
|
||||
<section id="cr.reload_routes"><title>cr.reload_routes</title>
|
||||
<para>
|
||||
Reload routes
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.db_text">
|
||||
<title>
|
||||
RPC Exports for db_text
|
||||
</title>
|
||||
|
||||
|
||||
<section id="db_text.dump"><title>db_text.dump</title>
|
||||
<para>
|
||||
Write back to disk modified tables
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.drouting">
|
||||
<title>
|
||||
RPC Exports for drouting
|
||||
</title>
|
||||
|
||||
|
||||
<section id="drouting.reload"><title>drouting.reload</title>
|
||||
<para>
|
||||
Write back to disk modified tables
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.ims_usrloc_pcscf">
|
||||
<title>
|
||||
RPC Exports for ims_usrloc_pcscf
|
||||
</title>
|
||||
|
||||
|
||||
<section id="ulpcscf.status"><title>ulpcscf.status</title>
|
||||
<para>
|
||||
Dump PCSCF contacts and associated identitites
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.ims_usrloc_scscf">
|
||||
<title>
|
||||
RPC Exports for ims_usrloc_scscf
|
||||
</title>
|
||||
|
||||
|
||||
<section id="ulscscf.status"><title>ulscscf.status</title>
|
||||
<para>
|
||||
Dump SCSCF user location tables
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="ulscscf.showimpu"><title>ulscscf.showimpu</title>
|
||||
<para>
|
||||
Dump SCSCF IMPU information
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.msrp">
|
||||
<title>
|
||||
RPC Exports for msrp
|
||||
</title>
|
||||
|
||||
|
||||
<section id="msrp.cmaplist"><title>msrp.cmaplist</title>
|
||||
<para>
|
||||
Return the content of dispatcher sets
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.mtree">
|
||||
<title>
|
||||
RPC Exports for mtree
|
||||
</title>
|
||||
|
||||
|
||||
<section id="mtree.summary"><title>mtree.summary</title>
|
||||
<para>
|
||||
Print summary of loaded mtree tables
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="mtree.reload"><title>mtree.reload</title>
|
||||
<para>
|
||||
Reload mtrees from database to memory
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.permissions">
|
||||
<title>
|
||||
RPC Exports for permissions
|
||||
</title>
|
||||
|
||||
|
||||
<section id="permissions.trustedReload"><title>permissions.trustedReload</title>
|
||||
<para>
|
||||
Reload permissions trusted table
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="permissions.addressReload"><title>permissions.addressReload</title>
|
||||
<para>
|
||||
Reload permissions address table
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="permissions.trustedDump"><title>permissions.trustedDump</title>
|
||||
<para>
|
||||
Dump permissions trusted table
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="permissions.addressDump"><title>permissions.addressDump</title>
|
||||
<para>
|
||||
Dump permissions address table
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="permissions.subnetDump"><title>permissions.subnetDump</title>
|
||||
<para>
|
||||
Dump permissions subnet table
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="permissions.domainDump"><title>permissions.domainDump</title>
|
||||
<para>
|
||||
Dump permissions domain name table
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="permissions.testUri"><title>permissions.testUri</title>
|
||||
<para>
|
||||
Tests if (URI, Contact) pair is allowed according to allow/deny
|
||||
files
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.pipelimit">
|
||||
<title>
|
||||
RPC Exports for pipelimit
|
||||
</title>
|
||||
|
||||
|
||||
<section id="pl.stats"><title>pl.stats</title>
|
||||
<para>
|
||||
Print pipelimit statistics: <id> <load>
|
||||
<counter>
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="pl.get_pipes"><title>pl.get_pipes</title>
|
||||
<para>
|
||||
Print pipes info: <id> <algorithm> <limit>
|
||||
<counter>
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="pl.set_pipe"><title>pl.set_pipe</title>
|
||||
<para>
|
||||
Sets a pipe params: <pipe_id> <pipe_algorithm>
|
||||
<pipe_limit>
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="pl.get_pid"><title>pl.get_pid</title>
|
||||
<para>
|
||||
Print PID Controller parameters for the FEEDBACK algorithm:
|
||||
<ki> <kp> <kd>
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="pl.set_pid"><title>pl.set_pid</title>
|
||||
<para>
|
||||
Sets the PID Controller parameters for the FEEDBACK algorithm:
|
||||
<ki> <kp> <kd>
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="pl.push_load"><title>pl.push_load</title>
|
||||
<para>
|
||||
Force the value of the load parameter for FEEDBACK algorithm:
|
||||
<load>
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.presence">
|
||||
<title>
|
||||
RPC Exports for presence
|
||||
</title>
|
||||
|
||||
|
||||
<section id="presence.cleanup"><title>presence.cleanup</title>
|
||||
<para>
|
||||
Manually triggers the cleanup functions for the
|
||||
active_watchers, presentity, and watchers tables.
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.pv">
|
||||
<title>
|
||||
RPC Exports for pv
|
||||
</title>
|
||||
|
||||
|
||||
<section id="pv.shvSet"><title>pv.shvSet</title>
|
||||
<para>
|
||||
Set a shared variable (args: name type value)
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="pv.shvGet"><title>pv.shvGet</title>
|
||||
<para>
|
||||
Get the value of a shared variable. If no argument, dumps all
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,100 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.sca">
|
||||
<title>
|
||||
RPC Exports for sca
|
||||
</title>
|
||||
|
||||
|
||||
<section id="sca.all_subscriptions"><title>sca.all_subscriptions</title>
|
||||
<para>
|
||||
Documentation missing (sca_rpc_show_all_subscriptions_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="sca.subscription_count"><title>sca.subscription_count</title>
|
||||
<para>
|
||||
Documentation missing (sca_rpc_subscription_count_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="sca.show_subscription"><title>sca.show_subscription</title>
|
||||
<para>
|
||||
Documentation missing (sca_rpc_show_subscription_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="sca.subscribers"><title>sca.subscribers</title>
|
||||
<para>
|
||||
Documentation missing (sca_rpc_show_subscribers_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="sca.deactivate_all_subscriptions"><title>sca.deactivate_all_subscriptions</title>
|
||||
<para>
|
||||
Documentation missing
|
||||
(sca_rpc_deactivate_all_subscriptions_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="sca.deactivate_subscription"><title>sca.deactivate_subscription</title>
|
||||
<para>
|
||||
Documentation missing (sca_rpc_deactivate_subscription_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="sca.all_appearances"><title>sca.all_appearances</title>
|
||||
<para>
|
||||
Documentation missing (sca_rpc_show_all_appearances_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="sca.show_appearance"><title>sca.show_appearance</title>
|
||||
<para>
|
||||
Documentation missing (sca_rpc_show_appearance_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="sca.seize_appearance"><title>sca.seize_appearance</title>
|
||||
<para>
|
||||
Documentation missing (sca_rpc_seize_appearance_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="sca.update_appearance"><title>sca.update_appearance</title>
|
||||
<para>
|
||||
Documentation missing (sca_rpc_update_appearance_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="sca.release_appearance"><title>sca.release_appearance</title>
|
||||
<para>
|
||||
Documentation missing (sca_rpc_release_appearance_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.sctp">
|
||||
<title>
|
||||
RPC Exports for sctp
|
||||
</title>
|
||||
|
||||
|
||||
<section id="sctp.options"><title>sctp.options</title>
|
||||
<para>
|
||||
Returns active sctp options. With one parameter it returns the
|
||||
sctp options set in the kernel for a specific
|
||||
socket(debugging), with 0 filled in for non-kernel related
|
||||
options. The parameter can be: "default" |
|
||||
"first" | address[:port] . With no parameters it
|
||||
returns ser's idea of the current sctp options (intended
|
||||
non-debugging use).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="sctp.info"><title>sctp.info</title>
|
||||
<para>
|
||||
Returns sctp related info.
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.sipcapture">
|
||||
<title>
|
||||
RPC Exports for sipcapture
|
||||
</title>
|
||||
|
||||
|
||||
<section id="sipcapture.status"><title>sipcapture.status</title>
|
||||
<para>
|
||||
Get status or turn on/off sipcapture.
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.siptrace">
|
||||
<title>
|
||||
RPC Exports for siptrace
|
||||
</title>
|
||||
|
||||
|
||||
<section id="siptrace.status"><title>siptrace.status</title>
|
||||
<para>
|
||||
Get status or turn on/off siptrace. Parameters: on, off or
|
||||
check.
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -1,77 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.usrloc_s">
|
||||
<title>
|
||||
RPC Exports for usrloc_s
|
||||
</title>
|
||||
|
||||
|
||||
<section id="usrloc.stats"><title>usrloc.stats</title>
|
||||
<para>
|
||||
Documentation missing (rpc_stats_doc).
|
||||
</para>
|
||||
<para>
|
||||
Returns an array.
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="usrloc.delete_uid"><title>usrloc.delete_uid</title>
|
||||
<para>
|
||||
Documentation missing (rpc_delete_uid_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="usrloc.delete_contact"><title>usrloc.delete_contact</title>
|
||||
<para>
|
||||
Documentation missing (rpc_delete_contact_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="usrloc.dump"><title>usrloc.dump</title>
|
||||
<para>
|
||||
Documentation missing (rpc_dump_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="usrloc.dump_file"><title>usrloc.dump_file</title>
|
||||
<para>
|
||||
Documentation missing (rpc_dump_file_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="usrloc.flush"><title>usrloc.flush</title>
|
||||
<para>
|
||||
Documentation missing (rpc_flush_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="usrloc.add_contact"><title>usrloc.add_contact</title>
|
||||
<para>
|
||||
Documentation missing (rpc_add_contact_doc).
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
<section id="usrloc.show_contacts"><title>usrloc.show_contacts</title>
|
||||
<para>
|
||||
Documentation missing (rpc_show_contacts_doc).
|
||||
</para>
|
||||
<para>
|
||||
Returns an array.
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- this file is autogenerated, do not edit! -->
|
||||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
||||
<chapter id="rpc_exports.xhttp_pi">
|
||||
<title>
|
||||
RPC Exports for xhttp_pi
|
||||
</title>
|
||||
|
||||
|
||||
<section id="xhttp_pi.reload"><title>xhttp_pi.reload</title>
|
||||
<para>
|
||||
Reload the xml framework
|
||||
</para>
|
||||
<para>
|
||||
</para>
|
||||
</section>
|
||||
|
||||
</chapter>
|
@ -0,0 +1,12 @@
|
||||
RPC Exports for app_lua
|
||||
=======================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. app_lua.reload
|
||||
Reload lua script
|
||||
|
||||
2. app_lua.list
|
||||
list lua scripts
|
||||
|
@ -0,0 +1,9 @@
|
||||
RPC Exports for carrierroute
|
||||
============================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. cr.reload_routes
|
||||
Reload routes
|
||||
|
@ -0,0 +1,15 @@
|
||||
RPC Exports for cnxcc
|
||||
=====================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. cnxcc.active_clients
|
||||
List of clients with active calls
|
||||
|
||||
2. cnxcc.check_client
|
||||
Check specific client calls
|
||||
|
||||
3. cnxcc.kill_call
|
||||
Kill call using its call ID
|
||||
|
@ -0,0 +1,12 @@
|
||||
RPC Exports for corex
|
||||
=====================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. corex.list_sockets
|
||||
List listening sockets
|
||||
|
||||
2. corex.list_aliases
|
||||
List socket aliases
|
||||
|
@ -1,15 +0,0 @@
|
||||
RPC Exports for cpl-c
|
||||
=====================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. cpl.load
|
||||
Load a CPL script to the server.
|
||||
|
||||
2. cpl.remove
|
||||
Remove a CPL script from server.
|
||||
|
||||
3. cpl.get
|
||||
Return a CPL script.
|
||||
|
@ -0,0 +1,9 @@
|
||||
RPC Exports for db_text
|
||||
=======================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. db_text.dump
|
||||
Write back to disk modified tables
|
||||
|
@ -0,0 +1,9 @@
|
||||
RPC Exports for dialog_ng
|
||||
=========================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. dlg2.list
|
||||
Print all dialogs
|
||||
|
@ -1,12 +0,0 @@
|
||||
RPC Exports for dispatcher_s
|
||||
============================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. dispatcher.dump
|
||||
Dump dispatcher set configuration
|
||||
|
||||
2. dispatcher.reload
|
||||
Reload dispatcher list from file
|
||||
|
@ -0,0 +1,9 @@
|
||||
RPC Exports for drouting
|
||||
========================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. drouting.reload
|
||||
Write back to disk modified tables
|
||||
|
@ -0,0 +1,9 @@
|
||||
RPC Exports for ims_usrloc_pcscf
|
||||
================================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. ulpcscf.status
|
||||
Dump PCSCF contacts and associated identitites
|
||||
|
@ -0,0 +1,12 @@
|
||||
RPC Exports for ims_usrloc_scscf
|
||||
================================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. ulscscf.status
|
||||
Dump SCSCF user location tables
|
||||
|
||||
2. ulscscf.showimpu
|
||||
Dump SCSCF IMPU information
|
||||
|
@ -0,0 +1,9 @@
|
||||
RPC Exports for msrp
|
||||
====================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. msrp.cmaplist
|
||||
Return the content of dispatcher sets
|
||||
|
@ -0,0 +1,12 @@
|
||||
RPC Exports for mtree
|
||||
=====================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. mtree.summary
|
||||
Print summary of loaded mtree tables
|
||||
|
||||
2. mtree.reload
|
||||
Reload mtrees from database to memory
|
||||
|
@ -0,0 +1,28 @@
|
||||
RPC Exports for permissions
|
||||
===========================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. permissions.trustedReload
|
||||
Reload permissions trusted table
|
||||
|
||||
2. permissions.addressReload
|
||||
Reload permissions address table
|
||||
|
||||
3. permissions.trustedDump
|
||||
Dump permissions trusted table
|
||||
|
||||
4. permissions.addressDump
|
||||
Dump permissions address table
|
||||
|
||||
5. permissions.subnetDump
|
||||
Dump permissions subnet table
|
||||
|
||||
6. permissions.domainDump
|
||||
Dump permissions domain name table
|
||||
|
||||
7. permissions.testUri
|
||||
Tests if (URI, Contact) pair is allowed according to allow/deny
|
||||
files
|
||||
|
@ -0,0 +1,27 @@
|
||||
RPC Exports for pipelimit
|
||||
=========================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. pl.stats
|
||||
Print pipelimit statistics: <id> <load> <counter>
|
||||
|
||||
2. pl.get_pipes
|
||||
Print pipes info: <id> <algorithm> <limit> <counter>
|
||||
|
||||
3. pl.set_pipe
|
||||
Sets a pipe params: <pipe_id> <pipe_algorithm> <pipe_limit>
|
||||
|
||||
4. pl.get_pid
|
||||
Print PID Controller parameters for the FEEDBACK algorithm:
|
||||
<ki> <kp> <kd>
|
||||
|
||||
5. pl.set_pid
|
||||
Sets the PID Controller parameters for the FEEDBACK algorithm:
|
||||
<ki> <kp> <kd>
|
||||
|
||||
6. pl.push_load
|
||||
Force the value of the load parameter for FEEDBACK algorithm:
|
||||
<load>
|
||||
|
@ -0,0 +1,10 @@
|
||||
RPC Exports for presence
|
||||
========================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. presence.cleanup
|
||||
Manually triggers the cleanup functions for the
|
||||
active_watchers, presentity, and watchers tables.
|
||||
|
@ -1,12 +0,0 @@
|
||||
RPC Exports for presence_b2b
|
||||
============================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. presence_b2b.test
|
||||
Testing events.
|
||||
|
||||
2. presence_b2b.trace
|
||||
Trace events.
|
||||
|
@ -0,0 +1,12 @@
|
||||
RPC Exports for pv
|
||||
==================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. pv.shvSet
|
||||
Set a shared variable (args: name type value)
|
||||
|
||||
2. pv.shvGet
|
||||
Get the value of a shared variable. If no argument, dumps all
|
||||
|
@ -0,0 +1,40 @@
|
||||
RPC Exports for sca
|
||||
===================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. sca.all_subscriptions
|
||||
Documentation missing (sca_rpc_show_all_subscriptions_doc).
|
||||
|
||||
2. sca.subscription_count
|
||||
Documentation missing (sca_rpc_subscription_count_doc).
|
||||
|
||||
3. sca.show_subscription
|
||||
Documentation missing (sca_rpc_show_subscription_doc).
|
||||
|
||||
4. sca.subscribers
|
||||
Documentation missing (sca_rpc_show_subscribers_doc).
|
||||
|
||||
5. sca.deactivate_all_subscriptions
|
||||
Documentation missing
|
||||
(sca_rpc_deactivate_all_subscriptions_doc).
|
||||
|
||||
6. sca.deactivate_subscription
|
||||
Documentation missing (sca_rpc_deactivate_subscription_doc).
|
||||
|
||||
7. sca.all_appearances
|
||||
Documentation missing (sca_rpc_show_all_appearances_doc).
|
||||
|
||||
8. sca.show_appearance
|
||||
Documentation missing (sca_rpc_show_appearance_doc).
|
||||
|
||||
9. sca.seize_appearance
|
||||
Documentation missing (sca_rpc_seize_appearance_doc).
|
||||
|
||||
10. sca.update_appearance
|
||||
Documentation missing (sca_rpc_update_appearance_doc).
|
||||
|
||||
11. sca.release_appearance
|
||||
Documentation missing (sca_rpc_release_appearance_doc).
|
||||
|
@ -0,0 +1,17 @@
|
||||
RPC Exports for sctp
|
||||
====================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. sctp.options
|
||||
Returns active sctp options. With one parameter it returns the
|
||||
sctp options set in the kernel for a specific
|
||||
socket(debugging), with 0 filled in for non-kernel related
|
||||
options. The parameter can be: "default" | "first" |
|
||||
address[:port] . With no parameters it returns ser's idea of
|
||||
the current sctp options (intended non-debugging use).
|
||||
|
||||
2. sctp.info
|
||||
Returns sctp related info.
|
||||
|
@ -0,0 +1,9 @@
|
||||
RPC Exports for sipcapture
|
||||
==========================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. sipcapture.status
|
||||
Get status or turn on/off sipcapture.
|
||||
|
@ -0,0 +1,10 @@
|
||||
RPC Exports for siptrace
|
||||
========================
|
||||
|
||||
[ this file is autogenerated, do not edit ]
|
||||
|
||||
|
||||
1. siptrace.status
|
||||
Get status or turn on/off siptrace. Parameters: on, off or
|
||||
check.
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue