Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asterisk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Voice
asterisk
Commits
1ce0dfd1
Commit
1ce0dfd1
authored
5 years ago
by
Kevin Harwell
Committed by
Gerrit Code Review
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge "res_pjsip_refer: ensure refer progress is still sent after Proceeding()"
parents
5a801887
d1a2ff0a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
res/res_pjsip_refer.c
+4
-3
4 additions, 3 deletions
res/res_pjsip_refer.c
with
4 additions
and
3 deletions
res/res_pjsip_refer.c
+
4
−
3
View file @
1ce0dfd1
...
...
@@ -233,11 +233,12 @@ static struct ast_frame *refer_progress_framehook(struct ast_channel *chan, stru
/* Determine the state of the REFER based on the control frames (or voice frames) passing */
if
(
f
->
frametype
==
AST_FRAME_VOICE
&&
!
progress
->
subclass
)
{
/* Media is passing without progress, this means the call has been answered */
progress
->
subclass
=
AST_CONTROL_ANSWER
;
notification
=
refer_progress_notification_alloc
(
progress
,
200
,
PJSIP_EVSUB_STATE_TERMINATED
);
}
else
if
(
f
->
frametype
==
AST_FRAME_CONTROL
)
{
/* Based on the control frame being written we can send a NOTIFY advising of the progress */
if
((
f
->
subclass
.
integer
==
AST_CONTROL_RING
)
||
(
f
->
subclass
.
integer
==
AST_CONTROL_RINGING
))
{
progress
->
subclass
=
f
->
subclass
.
integer
;
/* Don't set
progress->subclass
; an ANSWER can still follow */
notification
=
refer_progress_notification_alloc
(
progress
,
180
,
PJSIP_EVSUB_STATE_ACTIVE
);
}
else
if
(
f
->
subclass
.
integer
==
AST_CONTROL_BUSY
)
{
progress
->
subclass
=
f
->
subclass
.
integer
;
...
...
@@ -246,10 +247,10 @@ static struct ast_frame *refer_progress_framehook(struct ast_channel *chan, stru
progress
->
subclass
=
f
->
subclass
.
integer
;
notification
=
refer_progress_notification_alloc
(
progress
,
503
,
PJSIP_EVSUB_STATE_TERMINATED
);
}
else
if
(
f
->
subclass
.
integer
==
AST_CONTROL_PROGRESS
)
{
progress
->
subclass
=
f
->
subclass
.
integer
;
/* Don't set
progress->subclass
; an ANSWER can still follow */
notification
=
refer_progress_notification_alloc
(
progress
,
183
,
PJSIP_EVSUB_STATE_ACTIVE
);
}
else
if
(
f
->
subclass
.
integer
==
AST_CONTROL_PROCEEDING
)
{
progress
->
subclass
=
f
->
subclass
.
integer
;
/* Don't set
progress->subclass
; an ANSWER can still follow */
notification
=
refer_progress_notification_alloc
(
progress
,
100
,
PJSIP_EVSUB_STATE_ACTIVE
);
}
else
if
(
f
->
subclass
.
integer
==
AST_CONTROL_ANSWER
)
{
progress
->
subclass
=
f
->
subclass
.
integer
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment