Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
liblinphone
Commits
5bee4a06
Commit
5bee4a06
authored
13 years ago
by
Sylvain Berfini
Browse files
Options
Download
Plain Diff
Merge branch 'master' of git.linphone.org:linphone
parents
b61721e0
d5c1e8c9
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
coreapi/Makefile.am
+3
-4
coreapi/Makefile.am
coreapi/TunnelManager.cc
+1
-2
coreapi/TunnelManager.cc
with
4 additions
and
6 deletions
coreapi/Makefile.am
+
3
−
4
View file @
5bee4a06
...
...
@@ -9,9 +9,7 @@ linphone_includedir=$(includedir)/linphone
linphone_include_HEADERS
=
linphonecore.h linphonefriend.h linphonecore_utils.h ../config.h lpconfig.h sipsetup.h
INCLUDES
=
\
-I
$(
top_srcdir
)
\
$(
MEDIASTREAMER_CFLAGS
)
\
$(
TUNNEL_CFLAGS
)
-I
$(
top_srcdir
)
lib_LTLIBRARIES
=
liblinphone.la
...
...
@@ -42,7 +40,7 @@ liblinphone_la_SOURCES=\
linphone_tunnel_manager.h
if
BUILD_TUNNEL
liblinphone_la_SOURCES
+=
TunnelManager.cc TunnelManager.hh linphone_tunnel_manager.c
liblinphone_la_SOURCES
+=
TunnelManager.cc TunnelManager.hh linphone_tunnel_manager.c
c
endif
...
...
@@ -83,3 +81,4 @@ AM_CFLAGS=$(STRICT_OPTIONS) -DIN_LINPHONE \
$(
VIDEO_CFLAGS
)
\
$(
TUNNEL_CFLAGS
)
AM_CXXFLAGS
=
$(
AM_CFLAGS
)
This diff is collapsed.
Click to expand it.
coreapi/TunnelManager.cc
+
1
−
2
View file @
5bee4a06
...
...
@@ -69,7 +69,6 @@ int TunnelManager::eXosipSelect(int max_fds, fd_set *s1, fd_set *s2, fd_set *s3,
if
(
tv
!=
0
&&
tv
->
tv_sec
){
/*this is the select from udp.c, the one that is interesting to us*/
unsigned
int
i
;
fd_set
tmp
;
int
udp_fd
=
eXosip_get_udp_socket
();
int
controlfd
=-
1
;
...
...
@@ -222,9 +221,9 @@ int TunnelManager::customRecvfrom(struct _RtpTransport *t, mblk_t *msg, int flag
TunnelManager
::
TunnelManager
(
LinphoneCore
*
lc
)
:
TunnelClientController
()
,
mCore
(
lc
)
,
mEnabled
(
false
)
,
mSipSocket
(
NULL
)
,
mCallback
(
NULL
)
,
mEnabled
(
false
)
,
mTunnelClient
(
NULL
)
,
mAutoDetectStarted
(
false
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
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
Menu
Explore
Projects
Groups
Topics
Snippets