]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
documentation: Fix non-matching module support levels.
authorJoshua C. Colp <jcolp@sangoma.com>
Wed, 10 Mar 2021 10:47:26 +0000 (06:47 -0400)
committerGeorge Joseph <gjoseph@digium.com>
Tue, 16 Mar 2021 15:26:16 +0000 (10:26 -0500)
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

apps/app_attended_transfer.c
apps/app_blind_transfer.c
apps/app_talkdetect.c
res/res_http_websocket.c

index df8d83cd9b59eb4292f623cca83248c5c67e07e4..5c61d43df1d330fa5576790857dc5f4566215636 100644 (file)
@@ -140,4 +140,4 @@ static int load_module(void)
        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");
index 1c3fbb27cb48b78ca3217bb13c771191c40803df..fe0e483098b30090cb43d69195ec2aa67dea633a 100644 (file)
@@ -134,4 +134,4 @@ static int load_module(void)
        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");
index 1463b149a664a252cf9f6fbf411262692cfbde10..a733f3a3db311ff636f72804d075817f781e8154 100644 (file)
@@ -254,4 +254,4 @@ static int load_module(void)
        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");
index acf476e8cacb0f8e1f24ac47db6004ac313a1a13..36dfa367fb92dd6e82324c4dbb457645452980d7 100644 (file)
@@ -1521,7 +1521,7 @@ static int unload_module(void)
 }
 
 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,