mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-11-02 13:03:33 +00:00
This will be used by osmo-bsc to implement MGW-pinning for specific BTS. This is useful for instance to keep all BTS connections targeting the same MGW in order to make use of Osmux trunking optimizations (AMR payload of different calls filling same underlaying UDP packet). Related: SYS#5987 Change-Id: I75ce3e04cd3f6d9cc20d7b4fc0f51083780786c8
29 lines
1.5 KiB
Plaintext
29 lines
1.5 KiB
Plaintext
# When cleaning up this file upon a release:
|
|
#
|
|
# - Note that the release version number is entirely unrelated to the API
|
|
# versions. A release version 5.2.3 may happily have an API version of 42:7:5.
|
|
#
|
|
# - Bump API version in src/lib*/Makefile.am files according to chapter
|
|
# "Library interface versions" of the libtool documentation.
|
|
# https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
|
#
|
|
# - Iff the 'current' API version has changed, rename debian/lib*.install
|
|
#
|
|
# API version bumping for the impatient:
|
|
# LIBVERSION=c:r:a (current:revision_of_current:backwards_compat_age)
|
|
# 5:2:4 means that
|
|
# - this implements version 5 of the API;
|
|
# - this is the 2nd (compatible) revision of API version 5;
|
|
# - this is backwards compatible to all APIs since 4 versions ago,
|
|
# i.e. callers that need API versions from 1 to 5 can use this.
|
|
#
|
|
# Bumping API versions recipe:
|
|
# If the library source code has changed at all since the last update, r++;
|
|
# If any interfaces have been added, removed, or changed since the last update, c++, r=0;
|
|
# If any interfaces have been added since the last public release, a++;
|
|
# If any interfaces have been removed or changed since the last public release, a=0.
|
|
#
|
|
#library what description / commit summary line
|
|
libosmo-netif >1.2.0 OSMUX_DEFAULT_PORT, osmux_xfrm_output_*, osmux_xfrm_input_*
|
|
libosmocore >1.7.0 osmo_sockaddr_is_any()
|
|
libmgcp-client NEW APIs mgcp_client_pool_member_...() |