From aec6e77727ffccb5708f03c019aa95d54de66dbb Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Thu, 5 Jul 2018 12:27:00 +0200 Subject: [PATCH] uac: docs for uac_reg_enable() and uac_reg_disable() --- src/modules/uac/doc/uac_admin.xml | 45 +++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/src/modules/uac/doc/uac_admin.xml b/src/modules/uac/doc/uac_admin.xml index 07d5467596f..0daac1bdd24 100644 --- a/src/modules/uac/doc/uac_admin.xml +++ b/src/modules/uac/doc/uac_admin.xml @@ -901,6 +901,51 @@ failure_route[REMOTE_AUTH] { +
+ + <function moreinfo="none">uac_reg_enable(attr, val)</function> + + + Enable a remote registration record based on a filter specified by + attribute and value. The attribute can be: l_uuid, l_username, + r_username or auth_username. The value is what should be matched + against the value of the attribute in the remote registration record. + + + The SIP processing is done on the next timer routine. + + + <function>uac_reg_enable</function> usage + +... + uac_reg_enable("l_uuid", "account123"); +... + + +
+ +
+ + <function moreinfo="none">uac_reg_disable(attr, val)</function> + + + Disable a remote registration record based on a filter specified by + attribute and value. The attribute can be: l_uuid, l_username, + r_username or auth_username. The value is what should be matched + against the value of the attribute in the remote registration record. + + + The SIP processing is done on the next timer routine. + + + <function>uac_reg_disable</function> usage + +... + uac_reg_disable("l_uuid", "account123"); +... + + +
Pseudo Variables