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
f72ac202
Commit
f72ac202
authored
Nov 29, 2013
by
Simon Morlat
Browse files
fix build issue in ms2
parent
fb54b479
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
coreapi/bellesip_sal/sal_impl.c
coreapi/bellesip_sal/sal_impl.c
+13
-0
mediastreamer2
mediastreamer2
+1
-1
No files found.
coreapi/bellesip_sal/sal_impl.c
View file @
f72ac202
...
...
@@ -488,6 +488,19 @@ void sal_uninit(Sal* sal){
ms_free
(
sal
);
};
int
sal_transport_available
(
Sal
*
sal
,
SalTransport
t
){
switch
(
t
){
case
SalTransportUDP
:
case
SalTransportTCP
:
return
TRUE
;
case
SalTransportTLS
:
return
belle_sip_stack_tls_available
(
sal
->
stack
);
case
SalTransportDTLS
:
return
FALSE
;
}
return
FALSE
;
}
int
sal_add_listen_port
(
Sal
*
ctx
,
SalAddress
*
addr
){
int
result
;
belle_sip_listening_point_t
*
lp
=
belle_sip_stack_create_listening_point
(
ctx
->
stack
...
...
mediastreamer2
@
75514ad5
Subproject commit
b2dc80f2de024dc8a40fc92043e63f4e4f0669aa
Subproject commit
75514ad53cdda45632d35a474a2810e78b19997e
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