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
4dfb04e5
Commit
4dfb04e5
authored
Jun 30, 2009
by
Simon Morlat
Browse files
fix compilation problem
fix documentation.
parent
7d7af2a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
linphone/mediastreamer2/include/mediastreamer2/msticker.h
linphone/mediastreamer2/include/mediastreamer2/msticker.h
+3
-1
linphone/mediastreamer2/src/mtu.c
linphone/mediastreamer2/src/mtu.c
+0
-4
No files found.
linphone/mediastreamer2/include/mediastreamer2/msticker.h
View file @
4dfb04e5
...
...
@@ -125,7 +125,9 @@ int ms_ticker_detach(MSTicker *ticker,MSFilter *f);
void
ms_ticker_destroy
(
MSTicker
*
ticker
);
/**
* Destroy a ticker.
* Override MSTicker's time function.
* This can be used to control the ticker from an external time provider, for example the
* clock of a sound card.
*
* @param ticker A #MSTicker object.
* @param func A replacement method for calculating "current time"
...
...
linphone/mediastreamer2/src/mtu.c
View file @
4dfb04e5
...
...
@@ -180,10 +180,6 @@ int ms_discover_mtu(const char *host){
err
=
getaddrinfo
(
host
,
port
,
&
hints
,
&
ai
);
if
(
err
!=
0
){
ms_error
(
"getaddrinfo(): %s
\n
"
,
gai_strerror
(
err
));
err
=
close
(
sock
);
if
(
err
!=
0
)
ms_error
(
"close(): %s"
,
strerror
(
err
));
return
-
1
;
}
sock
=
socket
(
PF_INET
,
SOCK_DGRAM
,
0
);
...
...
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