[Asterisk-code-review] documentation: Fix non-matching module support levels. (asterisk[master])
Joshua Colp
asteriskteam at digium.com
Wed Mar 10 04:48:42 CST 2021
Joshua Colp has uploaded this change for review. ( https://gerrit.asterisk.org/c/asterisk/+/15622 )
Change subject: documentation: Fix non-matching module support levels.
......................................................................
documentation: Fix non-matching module support levels.
Some modules have a different support level documented in their
MODULEINFO XML and Asterisk module definition. This change
brings the two in sync for the modules which were not matching.
ASTERISK-29336
Change-Id: If2f819103d4a271e2e0624ef4db365e897fa3d35
---
M apps/app_attended_transfer.c
M apps/app_blind_transfer.c
M apps/app_talkdetect.c
M res/res_http_websocket.c
4 files changed, 4 insertions(+), 4 deletions(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/22/15622/1
diff --git a/apps/app_attended_transfer.c b/apps/app_attended_transfer.c
index df8d83c..5c61d43 100644
--- a/apps/app_attended_transfer.c
+++ b/apps/app_attended_transfer.c
@@ -140,4 +140,4 @@
return ast_register_application_xml(app, attended_transfer_exec);
}
-AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Attended transfer to the given extension");
+AST_MODULE_INFO_STANDARD_EXTENDED(ASTERISK_GPL_KEY, "Attended transfer to the given extension");
diff --git a/apps/app_blind_transfer.c b/apps/app_blind_transfer.c
index 1c3fbb2..fe0e483 100644
--- a/apps/app_blind_transfer.c
+++ b/apps/app_blind_transfer.c
@@ -134,4 +134,4 @@
return ast_register_application_xml(app, blind_transfer_exec);
}
-AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Blind transfer channel to the given destination");
+AST_MODULE_INFO_STANDARD_EXTENDED(ASTERISK_GPL_KEY, "Blind transfer channel to the given destination");
diff --git a/apps/app_talkdetect.c b/apps/app_talkdetect.c
index 1463b14..a733f3a 100644
--- a/apps/app_talkdetect.c
+++ b/apps/app_talkdetect.c
@@ -254,4 +254,4 @@
return ast_register_application_xml(app, background_detect_exec);
}
-AST_MODULE_INFO_STANDARD_EXTENDED(ASTERISK_GPL_KEY, "Playback with Talk Detection");
+AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Playback with Talk Detection");
diff --git a/res/res_http_websocket.c b/res/res_http_websocket.c
index acf476e..36dfa36 100644
--- a/res/res_http_websocket.c
+++ b/res/res_http_websocket.c
@@ -1521,7 +1521,7 @@
}
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER, "HTTP WebSocket Support",
- .support_level = AST_MODULE_SUPPORT_EXTENDED,
+ .support_level = AST_MODULE_SUPPORT_CORE,
.load = load_module,
.unload = unload_module,
.load_pri = AST_MODPRI_CHANNEL_DEPEND,
--
To view, visit https://gerrit.asterisk.org/c/asterisk/+/15622
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Change-Id: If2f819103d4a271e2e0624ef4db365e897fa3d35
Gerrit-Change-Number: 15622
Gerrit-PatchSet: 1
Gerrit-Owner: Joshua Colp <jcolp at sangoma.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20210310/201c2112/attachment.html>
More information about the asterisk-code-review
mailing list