Change Log for Release asterisk-20.15.0-rc3

Links:

Summary:

User Notes:

Upgrade Notes:

Commit Authors:

Issue and Commit Detail:

Closed Issues:

Commits By Author:

Commit List:

Commit Details:

channelstorage: Rename callbacks that conflict with DEBUG_FD_LEAKS.

Author: George Joseph Date: 2025-07-08

DEBUG_FD_LEAKS replaces calls to "open" and "close" with functions that keep track of file descriptors, even when those calls are actually callbacks defined in structures like ast_channelstorage_instance->open and don't touch file descriptors. This causes compilation failures. Those callbacks have been renamed to "open_instance" and "close_instance" respectively.

Resolves: #1287

channelstorage_cpp_map_name_id: Fix callback returning non-matching channels.

Author: George Joseph Date: 2025-07-09

When the callback() API was invoked but no channel passed the test, callback would return the last channel tested instead of NULL. It now correctly returns NULL when no channel matches.

Resolves: #1288