mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 20:04:50 +00:00
Merged revisions 57092 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r57092 | file | 2007-02-28 13:55:45 -0500 (Wed, 28 Feb 2007) | 2 lines Fix a few more issues with the agent logoff CLI command. (issue #9123 reported by arbrandes) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@57093 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -778,6 +778,8 @@ static int agent_hangup(struct ast_channel *ast)
|
||||
ast_log(LOG_NOTICE, "Agent '%s' didn't answer/confirm within %d seconds (waited %d)\n", p->name, p->autologoff, howlong);
|
||||
p->deferlogoff = 0;
|
||||
agent_logoff_maintenance(p, p->loginchan, logintime, ast->uniqueid, "Autologoff");
|
||||
if (persistent_agents)
|
||||
dump_agents();
|
||||
}
|
||||
} else if (p->dead) {
|
||||
ast_channel_lock(p->chan);
|
||||
@@ -792,9 +794,16 @@ static int agent_hangup(struct ast_channel *ast)
|
||||
}
|
||||
}
|
||||
ast_mutex_unlock(&p->lock);
|
||||
|
||||
/* Only register a device state change if the agent is still logged in */
|
||||
if (p->loginstart)
|
||||
if (!p->loginstart) {
|
||||
p->loginchan[0] = '\0';
|
||||
p->logincallerid[0] = '\0';
|
||||
if (persistent_agents)
|
||||
dump_agents();
|
||||
} else {
|
||||
ast_device_state_changed("Agent/%s", p->agent);
|
||||
}
|
||||
|
||||
if (p->pending) {
|
||||
AST_LIST_LOCK(&agents);
|
||||
|
Reference in New Issue
Block a user