chan_sip: Remove deprecated module.

ASTERISK-30297

Change-Id: Ic700168c80b68879d9cee8bb07afe2712fb17996
This commit is contained in:
Mike Bradeen
2022-11-28 13:05:21 -07:00
committed by George Joseph
parent e66c5da145
commit 4095a382da
80 changed files with 177 additions and 45491 deletions

View File

@@ -57,7 +57,7 @@
<parameter name="number" required="true" />
<parameter name="method-type">
<para>If no <replaceable>method-type</replaceable> is given, the default will be
<literal>sip</literal>.</para>
<literal>pjsip</literal>.</para>
</parameter>
<parameter name="zone-suffix">
<para>If no <replaceable>zone-suffix</replaceable> is given, the default will be
@@ -96,7 +96,7 @@
<parameter name="number" required="true" />
<parameter name="method-type">
<para>If no <replaceable>method-type</replaceable> is given, the default will be
<literal>sip</literal>.</para>
<literal>pjsip</literal>.</para>
</parameter>
<parameter name="options">
<optionlist>
@@ -185,7 +185,7 @@ static int function_enum(struct ast_channel *chan, const char *cmd, char *data,
if (args.tech && !ast_strlen_zero(args.tech)) {
ast_copy_string(tech,args.tech, sizeof(tech));
} else {
ast_copy_string(tech,"sip",sizeof(tech));
ast_copy_string(tech,"pjsip",sizeof(tech));
}
if (!args.zone) {
@@ -279,7 +279,7 @@ static int enum_query_read(struct ast_channel *chan, const char *cmd, char *data
if (!args.zone)
args.zone = "e164.zone";
ast_copy_string(tech, args.tech ? args.tech : "sip", sizeof(tech));
ast_copy_string(tech, args.tech ? args.tech : "pjsip", sizeof(tech));
if (!(erds = ast_calloc(1, sizeof(*erds))))
goto finish;