mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 11:58:40 +00:00
options: Change ast_options from ast_flags to ast_flags64.
DeveloperNote: The 32-bit ast_options has no room left to accomodate new options and so has been converted to an ast_flags64 structure. All internal references to ast_options have been updated to use the 64-bit flag manipulation macros. External module references to the 32-bit ast_options should continue to work on little-endian systems because the least-significant bytes of a 64 bit integer will be in the same location as a 32-bit integer. Because that's not the case on big-endian systems, we've swapped the bytes in the flags manupulation macros on big-endian systems so external modules should still work however you are encouraged to test.
This commit is contained in:
committed by
github-actions[bot]
parent
3e178dcfd6
commit
43bf8a4ded
@@ -4735,7 +4735,7 @@ enum ast_pbx_result ast_pbx_start(struct ast_channel *c)
|
||||
return AST_PBX_FAILED;
|
||||
}
|
||||
|
||||
if (!ast_test_flag(&ast_options, AST_OPT_FLAG_FULLY_BOOTED)) {
|
||||
if (!ast_fully_booted) {
|
||||
ast_log(LOG_WARNING, "PBX requires Asterisk to be fully booted\n");
|
||||
return AST_PBX_FAILED;
|
||||
}
|
||||
@@ -4757,7 +4757,7 @@ enum ast_pbx_result ast_pbx_run_args(struct ast_channel *c, struct ast_pbx_args
|
||||
{
|
||||
enum ast_pbx_result res = AST_PBX_SUCCESS;
|
||||
|
||||
if (!ast_test_flag(&ast_options, AST_OPT_FLAG_FULLY_BOOTED)) {
|
||||
if (!ast_fully_booted) {
|
||||
ast_log(LOG_WARNING, "PBX requires Asterisk to be fully booted\n");
|
||||
return AST_PBX_FAILED;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user