Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
libnice
Commits
5fb25117
Commit
5fb25117
authored
May 22, 2020
by
Olivier Crête
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
version 0.1.17
parent
c27f533e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
8 deletions
+24
-8
NEWS
NEWS
+14
-2
configure.ac
configure.ac
+4
-4
meson.build
meson.build
+6
-2
No files found.
NEWS
View file @
5fb25117
libnice 0.1.17 (2020-05-2
1
)
libnice 0.1.17 (2020-05-2
2
)
===========================
===========================
Add API to retrieve the underlying BSD sockets
Add API to retrieve the underlying BSD sockets
Support systems with multiple loopback devices
Ignore non-running network interfaces
Ignore multiple interface prefixes
Now tries to nominate matching pairs across components and streams
Retry TURN deallocation on timeout, requires not destoying the NiceAgent right after the stream
Use different port for every host candidate
Make timeouts and retransmissions more in line with the RFCs
Find OpenSSL without pkg-config, for Windows
Complete meson support
GLib required version update to 2.54
Removed deprecated GLib APIs
Many ICE compatibility and performance improvements
Many bug fixes
libnice 0.1.16 (2019-05-09)
libnice 0.1.16 (2019-05-09)
===========================
===========================
...
...
configure.ac
View file @
5fb25117
...
@@ -5,8 +5,8 @@ dnl Always compile with -Wall; if --enable-compile-warnings=error is passed,
...
@@ -5,8 +5,8 @@ dnl Always compile with -Wall; if --enable-compile-warnings=error is passed,
dnl also use -Werror. git and pre-releases default to -Werror
dnl also use -Werror. git and pre-releases default to -Werror
dnl use a three digit version number for releases, and four for cvs/prerelease
dnl use a three digit version number for releases, and four for cvs/prerelease
AC_INIT([libnice],[0.1.1
6.1
])
AC_INIT([libnice],[0.1.1
7
])
LIBNICE_RELEASE="
no
"
LIBNICE_RELEASE="
yes
"
AC_CANONICAL_TARGET
AC_CANONICAL_TARGET
...
@@ -39,9 +39,9 @@ AC_CONFIG_FILES([
...
@@ -39,9 +39,9 @@ AC_CONFIG_FILES([
# Increment CURRENT and AGE. Set REVISION to 0
# Increment CURRENT and AGE. Set REVISION to 0
# If there was an incompatible interface change:
# If there was an incompatible interface change:
# Increment CURRENT. Set AGE and REVISION to 0
# Increment CURRENT. Set AGE and REVISION to 0
LIBNICE_CURRENT=
19
LIBNICE_CURRENT=
20
LIBNICE_REVISION=0
LIBNICE_REVISION=0
LIBNICE_AGE=
9
LIBNICE_AGE=
10
LIBNICE_LIBVERSION=${LIBNICE_CURRENT}:${LIBNICE_REVISION}:${LIBNICE_AGE}
LIBNICE_LIBVERSION=${LIBNICE_CURRENT}:${LIBNICE_REVISION}:${LIBNICE_AGE}
LIBNICE_LT_LDFLAGS="-version-info ${LIBNICE_LIBVERSION} -no-undefined"
LIBNICE_LT_LDFLAGS="-version-info ${LIBNICE_LIBVERSION} -no-undefined"
AC_SUBST(LIBNICE_LT_LDFLAGS)
AC_SUBST(LIBNICE_LT_LDFLAGS)
...
...
meson.build
View file @
5fb25117
project('libnice', 'c',
project('libnice', 'c',
version: '0.1.1
6.1
',
version: '0.1.1
7
',
meson_version : '>= 0.52',
meson_version : '>= 0.52',
default_options : ['warning_level=1', 'buildtype=debugoptimized'])
default_options : ['warning_level=1', 'buildtype=debugoptimized'])
...
@@ -15,8 +15,12 @@ else
...
@@ -15,8 +15,12 @@ else
endif
endif
# maintain compatibility with the previous libtool versioning
# maintain compatibility with the previous libtool versioning
# libversion has 3 parts A.B.C
# A is the ABI version, change it if the ABI is broken, changing it resets B and C to 0. It matches soversion
# B is the ABI age, change it on new APIs that don't break existing ones, changing it resets C to 0
# C is the revision, change on new updates that don't change APIs
soversion = 10
soversion = 10
libversion = '10.
9
.0'
libversion = '10.
10
.0'
glib_req = '>= 2.54'
glib_req = '>= 2.54'
gnutls_req = '>= 2.12.0'
gnutls_req = '>= 2.12.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