mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 00:04:53 +00:00
res_parking: Replace Parker snapshots with ParkerDialString
This process also involved a large amount of rework regarding how to redial the Parker when a channel leaves a parking lot due to timeout. An attended transfer channel variable has been added to attended transfers to extensions that will eventually park (but haven't at the time of transfer) as well. This resolves one of the two BUGBUG comments remaining in res_parking. (issues ASTERISK-21877) Reported by: Matt Jordan Review: https://reviewboard.asterisk.org/r/2638/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@393704 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -40,9 +40,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
|
||||
static void display_parked_call(struct parked_user *user, int fd)
|
||||
{
|
||||
ast_cli(fd, " Space: %d\n", user->parking_space);
|
||||
ast_cli(fd, " Channel: %s\n", ast_channel_name(user->chan));
|
||||
ast_cli(fd, " Parker: %s\n", user->parker ? user->parker->name : "<unknown>");
|
||||
ast_cli(fd, " Space : %d\n", user->parking_space);
|
||||
ast_cli(fd, " Channel : %s\n", ast_channel_name(user->chan));
|
||||
ast_cli(fd, " Parker Dial String : %s\n", user->parker_dial_string);
|
||||
ast_cli(fd, "\n");
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user