- 28 Apr, 2015 3 commits
-
-
Olivier Crête authored
-
Olivier Crête authored
-
Olivier Crête authored
-
- 24 Apr, 2015 3 commits
-
-
Philip Withnall authored
sockaddr_to_string() is not needed on UNIX when compiling without HAVE_GETIFADDRS. This fixes a compiler warning in that case.
-
Philip Withnall authored
-
Philip Withnall authored
This fixes compilation when HAVE_GETIFADDRS is not define. Reported on the mailing list by Curieux Tres <trescurieux@yahoo.fr>.
-
- 23 Apr, 2015 6 commits
-
-
Philip Withnall authored
This fixes some compiler warnings.
-
Olivier Crête authored
-
Olivier Crête authored
-
Olivier Crête authored
-
Olivier Crête authored
-
Olivier Crête authored
-
- 22 Apr, 2015 1 commit
-
-
Olivier Crête authored
Fixes SDP parsing which I broke in commit 5972db04
-
- 20 Apr, 2015 11 commits
-
-
Sebastian Dröge authored
Receiving data before the element is ready to push them does not seem like the best idea. https://bugs.freedesktop.org/show_bug.cgi?id=89673
-
-
Olivier Crête authored
-
Olivier Crête authored
-
Olivier Crête authored
This remove a gcc warning
-
Olivier Crête authored
The only valid way to match streams is to count m= lines, see RFC 3264. https://bugs.freedesktop.org/show_bug.cgi?id=90019
-
Olivier Crête authored
Only 6 strings are valid. https://bugs.freedesktop.org/show_bug.cgi?id=90019
-
Olivier Crête authored
The include file names are very generic, at least make the guards a bit less generic. https://bugs.freedesktop.org/show_bug.cgi?id=90013
-
-
Ilya Konstantinov authored
Explain that either having an I/O callback or calling nice_agent_recv* is essential for ICE connection check to succeed. https://bugs.freedesktop.org/show_bug.cgi?id=89849
-
- 14 Apr, 2015 3 commits
-
-
Philip Withnall authored
As detected by GCC 4.9.
-
Rohan Garg authored
Adds new API: nice_agent_set_local_credentials().
-
Rohan Garg authored
-
- 28 Mar, 2015 2 commits
-
-
- 27 Mar, 2015 3 commits
-
-
Jose Antonio Santos Cadenas authored
Also memory copies are reduced if buffers are fragmented https://bugs.freedesktop.org/show_bug.cgi?id=89609
-
- 10 Mar, 2015 3 commits
-
-
Philip Withnall authored
Makes things a little bit safer to abuse.
-
Philip Withnall authored
NULL is ((gpointer) 0). nul is '\0'. Arrays can be NULL terminated. Strings can be nul terminated.
-
Philip Withnall authored
NULL is ((gpointer) 0). nul is '\0'. Arrays can be NULL terminated. Strings can be nul terminated.
-
- 11 Feb, 2015 5 commits
-
-
David Feurle authored
-
David Feurle authored
Dynamic on-stack arrays are not supported in Visual Studio. This has the downside of introducing an extra memory allocation into libstun, but it’s on a debug path so should be harmless.
-
David Feurle authored
-
David Feurle authored
-
Philip Withnall authored
Visual Studio 2010 still doesn’t support C99, and snprintf() is a C99 function, so compilation fails with: error: C3861: 'snprintf': identifier not found Use sprintf() instead, which is C89 and thus supported. This does not make the code unsafe, as the format specifier is constrained to two characters (+ trailing nul), which are guaranteed to fit in the array bounds. Reported on the mailing list: http://lists.freedesktop.org/archives/nice/2014-October/000978.html
-