[Asterisk-code-review] documentation: Fix non-matching module support levels. (asterisk[18])

George Joseph asteriskteam at digium.com
Tue Mar 16 11:04:47 CDT 2021


George Joseph has submitted this change. ( https://gerrit.asterisk.org/c/asterisk/+/15611 )

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(-)

Approvals:
  Benjamin Keith Ford: Looks good to me, but someone else must approve
  George Joseph: Looks good to me, approved; Approved for Submit



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/+/15611
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings

Gerrit-Project: asterisk
Gerrit-Branch: 18
Gerrit-Change-Id: If2f819103d4a271e2e0624ef4db365e897fa3d35
Gerrit-Change-Number: 15611
Gerrit-PatchSet: 2
Gerrit-Owner: Joshua Colp <jcolp at sangoma.com>
Gerrit-Reviewer: Benjamin Keith Ford <bford at digium.com>
Gerrit-Reviewer: Friendly Automation
Gerrit-Reviewer: George Joseph <gjoseph at digium.com>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20210316/a017ff09/attachment.html>


More information about the asterisk-code-review mailing list