mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-15 16:39:14 +00:00
tweak to devstate
This commit is contained in:
parent
916a75e9cf
commit
a4a8948774
@ -4708,6 +4708,13 @@ static void fetch_device_stats(switch_device_record_t *drec)
|
|||||||
} else {
|
} else {
|
||||||
drec->stats.ringing_out++;
|
drec->stats.ringing_out++;
|
||||||
}
|
}
|
||||||
|
} else if (np->callstate == CCS_HANGUP) {
|
||||||
|
drec->stats.hup++;
|
||||||
|
if (np->direction == SWITCH_CALL_DIRECTION_INBOUND) {
|
||||||
|
drec->stats.hup_in++;
|
||||||
|
} else {
|
||||||
|
drec->stats.hup_out++;
|
||||||
|
}
|
||||||
} else if (np->callstate != CCS_DOWN) {
|
} else if (np->callstate != CCS_DOWN) {
|
||||||
drec->stats.active++;
|
drec->stats.active++;
|
||||||
if (np->direction == SWITCH_CALL_DIRECTION_INBOUND) {
|
if (np->direction == SWITCH_CALL_DIRECTION_INBOUND) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user