mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-14 08:31:02 +00:00
Merged revisions 74997 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@74999 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1465,18 +1465,18 @@ static int agent_logoff(const char *agent, int soft)
|
||||
if (!strcasecmp(p->agent, agent)) {
|
||||
ret = 0;
|
||||
if (p->owner || p->chan) {
|
||||
p->deferlogoff = 1;
|
||||
if (!soft) {
|
||||
if (p->owner)
|
||||
ast_softhangup(p->owner, AST_SOFTHANGUP_EXPLICIT);
|
||||
if (p->chan)
|
||||
ast_softhangup(p->chan, AST_SOFTHANGUP_EXPLICIT);
|
||||
}
|
||||
} else
|
||||
p->deferlogoff = 1;
|
||||
} else {
|
||||
logintime = time(NULL) - p->loginstart;
|
||||
p->loginstart = 0;
|
||||
agent_logoff_maintenance(p, p->loginchan, logintime, NULL, "CommandLogoff");
|
||||
}
|
||||
p->loginstart = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -1901,8 +1901,10 @@ static int login_exec(struct ast_channel *chan, void *data)
|
||||
ast_device_state_changed("Agent/%s", p->agent);
|
||||
while (res >= 0) {
|
||||
ast_mutex_lock(&p->lock);
|
||||
if (!p->loginstart && p->chan)
|
||||
if (p->deferlogoff && p->chan) {
|
||||
ast_softhangup(p->chan, AST_SOFTHANGUP_EXPLICIT);
|
||||
p->deferlogoff = 0;
|
||||
}
|
||||
if (p->chan != chan)
|
||||
res = -1;
|
||||
ast_mutex_unlock(&p->lock);
|
||||
|
Reference in New Issue
Block a user