Skip to content
Snippets Groups Projects
Commit 9cfd3a03 authored by Grzegorz Sluja's avatar Grzegorz Sluja Committed by Yalu Zhang
Browse files

Respond 486 instead of 603 for an incoming call if FXS is busy and no DECT handset available

parent 85c53194
No related branches found
No related tags found
1 merge request!61Incoming call to busy FXS and no DECT available respond with 486
...@@ -3079,7 +3079,8 @@ static void brcm_process_event(struct endpt_event *ev) ...@@ -3079,7 +3079,8 @@ static void brcm_process_event(struct endpt_event *ev)
} }
break; break;
case EVENT_DECT_UNAVAILABLE: case EVENT_DECT_UNAVAILABLE:
ast_queue_control(owner, AST_CONTROL_HANGUP); ast_channel_hangupcause_set(owner, AST_CAUSE_USER_BUSY);
ast_queue_control(owner, AST_CONTROL_BUSY);
case EVENT_SWITCH: case EVENT_SWITCH:
case EVENT_JOIN: case EVENT_JOIN:
case EVENT_RELEASE: case EVENT_RELEASE:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment