This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, neels/aoip has been updated
via 366c7b0a0fdd96eee35805f67a1e914bd827bc3c (commit)
via 628cf3d0db67ecdd688a14f66439d746cd681b6f (commit)
from 5600a21a6502230ef2e08ebb9b3ba9b7fc869397 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=366c7b0a0fdd96eee35805f67a1e914b…
commit 366c7b0a0fdd96eee35805f67a1e914bd827bc3c
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Fri Jun 23 17:40:14 2017 +0200
osmo_bsc_main: use osmo_sccp_make_addr_pc_ssn() for SCCP addresses
Change-Id: Ib065533273acfabec9d9d4380dcbd6cf16744343
http://cgit.osmocom.org/openbsc/commit/?id=628cf3d0db67ecdd688a14f66439d746…
commit 628cf3d0db67ecdd688a14f66439d746cd681b6f
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Fri Jun 23 17:36:01 2017 +0200
AoIP+3G: use one common SCCP client for A and IuCS
Move osmo_sccp_simple_client() setup out of iu_init() and a_init().
In msc_main.c and sgsn_main.c, initialize the STP connection first and then
pass to iu_init() and a_init().
This allows serving 3G (IuCS) and 2G (A) from one and the same MSC instance.
Since both OsmoHNBGW and OsmoBSC are using PC 23 by default now, move BSC to PC
42 (because OsmoBSC typically has vty port 4242, bla).
Also:
a_iface.c: remove now unused defines
a_init(): remove osmo_ss7_init() call that duplicated msc_main.c
Change-Id: Ib1fb13ea756655f7e9d43636d497a54e6ae9c032
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/a_iface.h | 3 +--
openbsc/include/openbsc/gsm_data.h | 2 ++
openbsc/include/openbsc/iu.h | 3 +--
openbsc/src/gprs/sgsn_main.c | 16 +++++++++++++++-
openbsc/src/libiu/iu.c | 8 +++-----
openbsc/src/libmsc/a_iface.c | 14 ++------------
openbsc/src/osmo-bsc/osmo_bsc_main.c | 12 ++++--------
openbsc/src/osmo-msc/msc_main.c | 16 ++++++++++++----
8 files changed, 40 insertions(+), 34 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via 0d119ef8b3c198088a88f56e58a9f70002a2a197 (commit)
via 1349249f881702d98f8fc59ca2d23b59ffb74ac5 (commit)
via 56c5b949faf31fffb848a0c00e9a6687ef948252 (commit)
via 8aa85bd31abadedf69947250188795fad598dedd (commit)
via b3be964d1cdddabb0f01172bbdae26914b738e45 (commit)
via ea809df904dc3c59a23e0becf27681b6ecfe794f (commit)
from 40e629bd66e0fde9ca810f8f42e12d07051e665c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmocore/commit/?id=0d119ef8b3c198088a88f56e58a9…
commit 0d119ef8b3c198088a88f56e58a9f70002a2a197
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Sun Jun 18 11:02:37 2017 +0200
contrib: Enable -Werror by default
Change-Id: I1752cad1e34cb6e5f36edf3f538d803eff29d18c
http://cgit.osmocom.org/libosmocore/commit/?id=1349249f881702d98f8fc59ca2d2…
commit 1349249f881702d98f8fc59ca2d23b59ffb74ac5
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Jun 23 11:18:04 2017 +0200
configure.ac: Fix C(PP)FLAGS for BSD build
If we pass CFLAGS params to configure, then the CFLAGS set inside
configure.ac are not applied and the build fails if -Werror is enabled
because then BUILDING_LIBOSMOCORE is not defined.
Seeing the following output at configure time in FreeBSD build:
./configure: CFLAGS+= -fsanitize=address -fsanitize=undefined: not found
./configure: CPPFLAGS+= -fsanitize=address -fsanitize=undefined: not found
./configure: CFLAGS+= -DBUILDING_LIBOSMOCORE -Wall: not found
./configure: CPPFLAGS+= -DBUILDING_LIBOSMOCORE -Wall: not found
Change-Id: I692bbc66e5343998eec360a02a3a1fe73478c5c6
http://cgit.osmocom.org/libosmocore/commit/?id=56c5b949faf31fffb848a0c00e9a…
commit 56c5b949faf31fffb848a0c00e9a6687ef948252
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Jun 23 15:33:30 2017 +0200
jenkins.sh: Disable sanitize for FreeBSD
Our current build server uses clang-3.4.1 and FreeBSD10.3, and
AddressSanitizer support is not good yet on those versions, triggering
some link issues when it is enabled.
I tested using newer clang 3.7.1 in the same FreeBSD version but another
compiler error related to __builtin_cpu_supports is triggered.
Conclusion: Explicitly disable AddressSanitizer until we move to
FreeBSD11 with clang 3.8. Before this commit, AddressSanitizer was
implicitly disabled due to a shell compatibility issue which is fixed
in next commit in the series, thus we need to explicitly disable it here.
Change-Id: I0db497045a2ebf7877232b28ae1fcf1fd89fb3f3
http://cgit.osmocom.org/libosmocore/commit/?id=8aa85bd31abadedf699472501887…
commit 8aa85bd31abadedf69947250188795fad598dedd
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Jun 23 12:43:31 2017 +0200
control_cmd.c: Fix unsigned comparison against < 0
Fixes following warning:
control_cmd.c:294:16: warning: comparison of unsigned enum expression < 0 is always false [-Wtautological-compare]
if (cmd->type < 0 || cmd->type == CTRL_TYPE_UNKNOWN) {
Change-Id: I3df8a4f646222337927d9e3cac6d09a8a05cb20c
http://cgit.osmocom.org/libosmocore/commit/?id=b3be964d1cdddabb0f01172bbdae…
commit b3be964d1cdddabb0f01172bbdae26914b738e45
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Jun 23 12:38:55 2017 +0200
abis_nm.c: Fix implicit enumeration type conversion
Fixes following warning message:
abis_nm.c:101:2: warning: implicit conversion from enumeration type 'enum abis_nm_msgtype_bs11' to different enumeration type 'enum abis_nm_msgtype' [-Wenum-conversion]
Change-Id: Icb0ed423febf1ceb6626e256d32011b4118fc527
http://cgit.osmocom.org/libosmocore/commit/?id=ea809df904dc3c59a23e0becf276…
commit ea809df904dc3c59a23e0becf27681b6ecfe794f
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Jun 23 11:03:55 2017 +0200
serial.c: Use pragma message instead of warning
Change-Id: I65b1ef6e4b9ba0bf0c3c2f03311250f31ddb308a
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 8 ++++----
contrib/jenkins-arm.sh | 4 ++--
contrib/jenkins.sh | 10 ++++++++--
src/ctrl/control_cmd.c | 2 +-
src/gsm/abis_nm.c | 8 ++++----
src/serial.c | 2 +-
6 files changed, 20 insertions(+), 14 deletions(-)
hooks/post-receive
--
An utility library for Open Source Mobile Communications
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 9d294c9cb1dc35abf8604cf266b7734f814527fa (commit)
from 5466ff9c1b548fc77fca4c727c276b29d33225d7 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmo-bts/commit/?id=9d294c9cb1dc35abf8604cf266b7734…
commit 9d294c9cb1dc35abf8604cf266b7734f814527fa
Author: Max <msuraev(a)sysmocom.de>
Date: Thu Jun 22 19:44:17 2017 +0200
lc15: fix jenkins build
* use proper fw headers include path
* do not quote $PARALLEL_MAKE variable
Change-Id: Ib67305ae858ce322f7ea4ac6c6ce5007ce8e7ab9
Related: SYS#3682
-----------------------------------------------------------------------
Summary of changes:
contrib/jenkins_lc15.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SCCP Library".
The branch, master has been updated
via 4e015f6664ce730e1b44107a0f2f05971ae628bd (commit)
from a70b4599f63b50c4d654eb9e1b1a099a7c8cdc36 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmo-sccp/commit/?id=4e015f6664ce730e1b44107a0f2…
commit 4e015f6664ce730e1b44107a0f2f05971ae628bd
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Jun 22 20:56:52 2017 +0200
cosmetic: drop second ';;'
Change-Id: I861b87e485d94f17e4b4a800c8da865f98633c92
-----------------------------------------------------------------------
Summary of changes:
include/osmocom/sigtran/osmo_ss7.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
SCCP Library
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via 40e629bd66e0fde9ca810f8f42e12d07051e665c (commit)
via 29b7d53239e59c1b7db506ca9adada7e0a689b56 (commit)
via 399a6f09ff051988e2e840185ad1f7f5b8a2adce (commit)
via 4573502a1c0c84949d7195a9ea3ee8996bb29c0f (commit)
from c977984ecd856f8f35fe3b75dff3298aaf7e2067 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmocore/commit/?id=40e629bd66e0fde9ca810f8f42e1…
commit 40e629bd66e0fde9ca810f8f42e12d07051e665c
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Sun Jun 18 11:13:03 2017 +0200
configure.ac: Enable -Wall by default
Change-Id: I70f917e05ad46049487710d1752aad2505c96696
http://cgit.osmocom.org/libosmocore/commit/?id=29b7d53239e59c1b7db506ca9ada…
commit 29b7d53239e59c1b7db506ca9adada7e0a689b56
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Sun Jun 18 14:15:16 2017 +0200
gsm0411_utils.c: Fix compilation warnings
gsm0411_utils.c:102:2: warning: #warning find a portable way to obtain timezone offset [-Wcpp]
#warning find a portable way to obtain timezone offset
gsm0411_utils.c: In function 'gsm338_get_sms_alphabet':
gsm0411_utils.c:260:4: warning: large integer implicitly truncated to unsigned type [-Woverflow]
return 0xffffffff;
Change-Id: I1d6cb31f38721f79e2cf93f9b8e4776f3720aa07
http://cgit.osmocom.org/libosmocore/commit/?id=399a6f09ff051988e2e840185ad1…
commit 399a6f09ff051988e2e840185ad1f7f5b8a2adce
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Sun Jun 18 14:07:37 2017 +0200
Fix warnings: tolower() and similar require uchar
utils.c: In function 'osmo_str2lower':
utils.c:277:3: warning: array subscript has type 'char' [-Wchar-subscripts]
out[i] = tolower(in[i]);
And according to man:
If c is neither an unsigned char value nor EOF, the behavior of these func‐
tions is undefined.
Change-Id: I3fed2ab6a4efba9f8a21fcf84a5b3a91e8df084f
http://cgit.osmocom.org/libosmocore/commit/?id=4573502a1c0c84949d7195a9ea3e…
commit 4573502a1c0c84949d7195a9ea3ee8996bb29c0f
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Sun Jun 18 14:05:24 2017 +0200
Fix compilation warnings: use correct log type for uint32_t
Change-Id: Ic1e3255800999669ca9619bfceb4124c773eff2d
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 4 ++--
src/gsm/gsm0411_utils.c | 4 ++--
src/gsm/gsm48.c | 3 ++-
src/gsm/gsm_utils.c | 2 +-
src/logging.c | 4 ++--
src/utils.c | 7 ++++---
6 files changed, 13 insertions(+), 11 deletions(-)
hooks/post-receive
--
An utility library for Open Source Mobile Communications
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, pmaier/aoip has been updated
via 030312043a84b0bfaf35c36790e56e3016c68661 (commit)
via e1257c75a6302c84cfa9d4a265e288c643a29a70 (commit)
from b5b809da0b18fcb0d4840ea567130b31b8524ca0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=030312043a84b0bfaf35c36790e56e30…
commit 030312043a84b0bfaf35c36790e56e3016c68661
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Fri Jun 23 10:13:27 2017 +0200
wip: vty: make msc sccp addressesconfigurable
Currently all sccp addresses on the msc (and bsc)
side are hardcoded.
Prepare the msc code to make the associated BSCs
configurble. Make the compiler link libosmo-sccp
properly and start using the sccp addressbook
feature of libosmoc-sccp.
http://cgit.osmocom.org/openbsc/commit/?id=e1257c75a6302c84cfa9d4a265e288c6…
commit e1257c75a6302c84cfa9d4a265e288c643a29a70
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Fri Jun 23 10:21:42 2017 +0200
fixup: rename gsm0808_extrapolate_speech_codec()
Libosmocore renames gsm0808_extrapolate_speech_codec() to
gsm0808_speech_codec_from_chan_type()
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/a_iface.h | 19 +++++++++++++++++--
openbsc/include/openbsc/gsm_data.h | 3 +++
openbsc/src/gprs/Makefile.am | 2 ++
openbsc/src/libcommon-cs/common_cs.c | 1 +
openbsc/src/libcommon/common_vty.c | 22 +++++++++++++++-------
openbsc/src/libmsc/a_iface.c | 32 ++++++++++----------------------
openbsc/src/osmo-bsc/osmo_bsc_audio.c | 2 +-
openbsc/src/osmo-bsc/osmo_bsc_bssap.c | 2 +-
openbsc/src/osmo-bsc_mgcp/Makefile.am | 1 +
openbsc/src/osmo-msc/msc_main.c | 1 +
10 files changed, 52 insertions(+), 33 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Osmocom code for Iuh interface".
The branch, neels/sigtran has been updated
discards d19800327c819f98f389aa5a3dfabe614fab5706 (commit)
via 17032bafefbed3a258e2e20adc8cee5cbb033433 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (d19800327c819f98f389aa5a3dfabe614fab5706)
\
N -- N -- N (17032bafefbed3a258e2e20adc8cee5cbb033433)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmo-iuh/commit/?id=17032bafefbed3a258e2e20adc8cee5…
commit 17032bafefbed3a258e2e20adc8cee5cbb033433
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Jun 20 22:45:03 2017 +0200
WIP: make hnbgw work with M3UA SIGTRAN to an OsmoSTP
Change-Id: I7feb5768731baf54c85ba724d217ac80a27304bb
-----------------------------------------------------------------------
Summary of changes:
include/osmocom/iuh/context_map.h | 3 +--
src/context_map.c | 2 --
src/hnbgw_cn.c | 12 ++----------
src/hnbgw_rua.c | 2 +-
4 files changed, 4 insertions(+), 15 deletions(-)
hooks/post-receive
--
Osmocom code for Iuh interface
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, neels/aoip has been updated
discards 6b4be38fc653418549ad0402dcf84a35355f123b (commit)
discards d23ef39513db9eb8e156fbfc8e8506aac7a17546 (commit)
discards bbd32cddf8986f603507829a9ea430a3bef43bcd (commit)
discards 3c8f08c78784ed9c84f6327f56c2debac4240943 (commit)
discards 804e2d5d2c8cdc515355cf6596dd94f6214754ed (commit)
discards 8185a941f8d47647de3941e1a9e2b445ca92c2ce (commit)
via 5600a21a6502230ef2e08ebb9b3ba9b7fc869397 (commit)
via 656b5789612ea59073c732090dad9611f5561b79 (commit)
via bc0ab90fc9c2a105089d83fcdb5ba89637dbd22f (commit)
via aaffff66b2b20de29169b632420079bc315f2826 (commit)
via 02fdbb40031f41510cffe4dbc1d9671fea5783af (commit)
via 4e2e1862bcd7bfbc57a415fdcf79608301bcebe8 (commit)
via 0008777c0305426e91230a31160a1aa26563abfa (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (6b4be38fc653418549ad0402dcf84a35355f123b)
\
N -- N -- N (5600a21a6502230ef2e08ebb9b3ba9b7fc869397)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=5600a21a6502230ef2e08ebb9b3ba9b7…
commit 5600a21a6502230ef2e08ebb9b3ba9b7fc869397
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Jun 21 15:57:57 2017 +0200
msc: re-enable iu_init()
Change-Id: If12ca46c834466307bee6465b777d63d5c922405
http://cgit.osmocom.org/openbsc/commit/?id=656b5789612ea59073c732090dad9611…
commit 656b5789612ea59073c732090dad9611f5561b79
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Jun 21 15:57:42 2017 +0200
a_init: use name arg for sccp client and user bind
Change-Id: I10e899777e21bf1dbfba1e7e692d7017593e5f38
http://cgit.osmocom.org/openbsc/commit/?id=bc0ab90fc9c2a105089d83fcdb5ba896…
commit bc0ab90fc9c2a105089d83fcdb5ba89637dbd22f
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Mon Jun 19 18:22:21 2017 +0200
a_iface: fix typo in function name
http://cgit.osmocom.org/openbsc/commit/?id=aaffff66b2b20de29169b632420079bc…
commit aaffff66b2b20de29169b632420079bc315f2826
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Mon Jun 19 18:19:27 2017 +0200
a_iface: Check if channel type and speech codec list are successful
Currently we do not check for errors during the generation of
channel type and speech codec list. This might blow an assertion
in gsm0808_create_ass if the generated data is invalid. So
we need to check beforehand.
http://cgit.osmocom.org/openbsc/commit/?id=02fdbb40031f41510cffe4dbc1d9671f…
commit 02fdbb40031f41510cffe4dbc1d9671fea5783af
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Wed Jun 14 12:00:30 2017 +0200
rsl: fix stray line break in logtext
The log output from the rsl layer injects line breaks at wrong
places in the log. This messes up the logtext. This commit fixes
the problem.
http://cgit.osmocom.org/openbsc/commit/?id=4e2e1862bcd7bfbc57a415fdcf796083…
commit 4e2e1862bcd7bfbc57a415fdcf79608301bcebe8
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Wed Jun 14 11:11:27 2017 +0200
mgcp: fix line-break problem in log
When the mgcp_client prints MGCP strings in the log text, it does
not remove the line break before printing. This will mess up
the log text. This patch removes the line break characters before
printing properly.
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libmsc/a_iface.c | 2 +-
openbsc/src/osmo-bsc/osmo_bsc_audio.c | 2 +-
openbsc/src/osmo-bsc/osmo_bsc_bssap.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via c977984ecd856f8f35fe3b75dff3298aaf7e2067 (commit)
via 9a391e2edf4df34224a6cb24fdb5d8d8f1c4ae3a (commit)
from 95efc6993f6b7d39293c4e22d44d90f2aa3708ac (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmocore/commit/?id=c977984ecd856f8f35fe3b75dff3…
commit c977984ecd856f8f35fe3b75dff3298aaf7e2067
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Fri Jun 23 02:34:26 2017 +0200
fix map entry for gsm0808_speech_codec_from_chan_type
Recent commit 884ba0f2bcaf385cabee0b4228a2598d61fa406b adds function
gsm0808_chan_type_to_speech_codec() but adds a mismatching name in
libosmogsm.map. openbsc.git's aoip branch can't build with this.
This must have been an on-the-fly rename that wasn't properly tested. Always
test your patches!
Change-Id: I68feb14f7bcb2f62b89f9b2d8c085d6824b493bc
http://cgit.osmocom.org/libosmocore/commit/?id=9a391e2edf4df34224a6cb24fdb5…
commit 9a391e2edf4df34224a6cb24fdb5d8d8f1c4ae3a
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Fri Jun 23 02:34:08 2017 +0200
fix map entry and .h declaration for gsm0808_chan_type_to_speech_codec()
Recent commit 3149b0d076477303a38df735fe579b1b06ee17b2 adds function
gsm0808_chan_type_to_speech_codec() but adds a completely mismatching name in
libosmogsm.map, as well as a definition with a typo in the name.
Fix the entry in libosmogsm.map.
Add the missing 'c' in gsm0808_utils.h
Change-Id: I5a621fa5ef6b632eabbe224f3dd383eacaffb695
-----------------------------------------------------------------------
Summary of changes:
include/osmocom/gsm/gsm0808_utils.h | 2 +-
src/gsm/libosmogsm.map | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
An utility library for Open Source Mobile Communications
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, aoip has been updated
via 0008777c0305426e91230a31160a1aa26563abfa (commit)
from 51d2a33542064e8605302a22214f57f7886c703e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=0008777c0305426e91230a31160a1aa2…
commit 0008777c0305426e91230a31160a1aa26563abfa
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Fri Jun 23 03:26:59 2017 +0200
apply function renames in merged libosmocore patches
Change-Id: Ic659d6d79a6284732e1837f8b0947e8a128ddd87
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libmsc/a_iface.c | 2 +-
openbsc/src/osmo-bsc/osmo_bsc_audio.c | 2 +-
openbsc/src/osmo-bsc/osmo_bsc_bssap.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)