Skip to content
Snippets Groups Projects
Commit 3cdd8d43 authored by Youness Alaoui's avatar Youness Alaoui
Browse files

version 0.0.7

parent 9497d78f
No related merge requests found
libnice 0.0.7 (2009-06-11)
===========================
Added UPnP Support
Fix a race condition when destroying the nice agent
Stun headers are now installed
Unset timer's source if they return FALSE
Fix interoperability with gtalk2voip.com
Avoid a race condition where a candidate has the wrong user/pass
Add support for delayed setting of the remote candidates in google mode
Better connectivity support and race condition fixes
Keepalive connchecks do not change the state if they fail but data was still received
Fix foundation generation for remote peer reflexive candidates
Drop packets when using TCP and the bandwidth is too slow for the data output
libnice 0.0.6 (2009-03-31)
===========================
......
......@@ -3,8 +3,8 @@ AC_PREREQ(2.59c)
dnl releases only do -Wall, cvs and prerelease does -Werror too
dnl use a three digit version number for releases, and four for cvs/prerelease
AC_INIT(libnice, 0.0.6.1)
LIBNICE_RELEASE="no"
AC_INIT(libnice, 0.0.7)
LIBNICE_RELEASE="yes"
AC_CONFIG_SRCDIR([agent/agent.c])
AC_CONFIG_HEADER([config.h])
......@@ -27,8 +27,14 @@ AC_CONFIG_FILES([
])
# Set the libtool C/A/R version info
# If the source code was changed, but there were no interface changes:
# Increment REVISION.
# If there was a compatible interface change:
# Increment CURRENT and AGE. Set REVISION to 0
# If there was an incompatible interface change:
# Increment CURRENT. Set AGE and REVISION to 0
LIBNICE_CURRENT=4
LIBNICE_REVISION=0
LIBNICE_REVISION=1
LIBNICE_AGE=4
LIBNICE_LIBVERSION=${LIBNICE_CURRENT}:${LIBNICE_REVISION}:${LIBNICE_AGE}
LIBNICE_LT_LDFLAGS="-version-info ${LIBNICE_LIBVERSION}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment