Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
3131fc4d
Commit
3131fc4d
authored
Sep 24, 2018
by
Ghislain MARY
Browse files
Mark an incoming call as missed if it is cancelled with a Reason header containing cause=487.
parent
0d814b21
Pipeline
#368
failed with stage
in 0 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
src/conference/session/call-session.cpp
View file @
3131fc4d
...
...
@@ -104,6 +104,8 @@ void CallSessionPrivate::setState (CallSession::State newState, const string &me
int
code
=
linphone_error_info_get_protocol_code
(
ei
);
if
((
code
>=
200
)
&&
(
code
<
300
))
log
->
status
=
LinphoneCallAcceptedElsewhere
;
else
if
(
code
==
487
)
log
->
status
=
LinphoneCallMissed
;
}
}
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment