From: Pablo Neira Ayuso pablo@gnumonks.org
This is the second version of this patchset, which includes:
* The creation of the libosmogsm library which is distributed in libosmocore. * The new GSM-specific header directory under include/osmocom/gsm. * The new core header directory under include/osmocom/core.
Once this changes have been applied, the directory include/osmocore vanishes from the tree.
Please, apply!
Pablo Neira Ayuso (2): src: move GSM-specific functions to libosmogsm library include: reorganize headers file to include/osmocom/[gsm|core]
Makefile.am | 2 +- configure.in | 7 ++- include/Makefile.am | 2 +- include/osmocom/Makefile.am | 4 +- include/osmocom/core/Makefile.am | 12 +++++ include/osmocom/core/backtrace.h | 6 ++ include/{osmocore => osmocom/core}/bits.h | 0 include/{osmocore => osmocom/core}/bitvec.h | 0 include/{osmocore => osmocom/core}/crc16.h | 0 include/{osmocore => osmocom/core}/gsmtap.h | 0 include/{osmocore => osmocom/core}/gsmtap_util.h | 0 include/{osmocore => osmocom/core}/linuxlist.h | 0 include/{osmocore => osmocom/core}/logging.h | 2 +- include/{osmocore => osmocom/core}/msgb.h | 6 +- include/{osmocore => osmocom/core}/msgfile.h | 0 include/{osmocore => osmocom/core}/panic.h | 0 include/{osmocore => osmocom/core}/plugin.h | 0 include/{osmocore => osmocom/core}/process.h | 0 include/{osmocore => osmocom/core}/rate_ctr.h | 2 +- include/{osmocore => osmocom/core}/select.h | 2 +- include/{osmocore => osmocom/core}/signal.h | 0 include/{osmocore => osmocom/core}/statistics.h | 0 include/{osmocore => osmocom/core}/talloc.h | 0 include/{osmocore => osmocom/core}/timer.h | 2 +- include/{osmocore => osmocom/core}/utils.h | 0 include/{osmocore => osmocom/core}/write_queue.h | 0 include/osmocom/crypt/gprs_cipher.h | 2 +- include/osmocom/gsm/Makefile.am | 6 ++ include/{osmocore => osmocom/gsm}/comp128.h | 0 include/{osmocore => osmocom/gsm}/gsm0480.h | 6 +- include/{osmocore => osmocom/gsm}/gsm0808.h | 0 include/{osmocore => osmocom/gsm}/gsm48.h | 6 +- include/{osmocore => osmocom/gsm}/gsm48_ie.h | 8 ++-- include/{osmocore => osmocom/gsm}/gsm_utils.h | 1 - include/{osmocore => osmocom/gsm}/mncc.h | 0 include/osmocom/gsm/protocol/Makefile.am | 6 ++ .../{osmocore => osmocom/gsm}/protocol/gsm_03_41.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_04_08.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_04_11.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_04_12.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_04_80.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_08_08.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_08_58.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_12_21.h | 2 +- include/{osmocore => osmocom/gsm}/rsl.h | 4 +- include/{osmocore => osmocom/gsm}/rxlev_stat.h | 0 include/{osmocore => osmocom/gsm}/tlv.h | 2 +- include/osmocom/vty/telnet_interface.h | 4 +- include/osmocore/Makefile.am | 13 ----- include/osmocore/protocol/Makefile.am | 6 -- libosmogsm.pc.in | 11 ++++ src/Makefile.am | 14 +++--- src/backtrace.c | 50 ++++++++++++++++++++ src/bits.c | 2 +- src/bitvec.c | 2 +- src/crc16.c | 2 +- src/gsm/Makefile.am | 13 +++++ src/{ => gsm}/comp128.c | 0 src/{ => gsm}/gprs_cipher_core.c | 6 +- src/{ => gsm}/gsm0480.c | 10 ++-- src/{ => gsm}/gsm0808.c | 6 +- src/{ => gsm}/gsm48.c | 8 ++-- src/{ => gsm}/gsm48_ie.c | 12 ++-- src/{ => gsm}/gsm_utils.c | 29 +---------- src/{ => gsm}/rsl.c | 4 +- src/{ => gsm}/rxlev_stat.c | 4 +- src/{ => gsm}/tlv_parser.c | 4 +- src/gsmtap_util.c | 14 +++--- src/logging.c | 6 +- src/logging_syslog.c | 6 +- src/msgb.c | 4 +- src/msgfile.c | 4 +- src/panic.c | 5 +- src/plugin.c | 2 +- src/rate_ctr.c | 10 ++-- src/select.c | 6 +- src/signal.c | 6 +- src/statistics.c | 6 +- src/talloc.c | 2 +- src/timer.c | 2 +- src/utils.c | 2 +- src/vty/buffer.c | 2 +- src/vty/command.c | 2 +- src/vty/logging_vty.c | 6 +- src/vty/telnet_interface.c | 6 +- src/vty/utils.c | 8 ++-- src/vty/vector.c | 2 +- src/vty/vty.c | 2 +- src/write_queue.c | 2 +- tests/msgfile/msgfile_test.c | 2 +- tests/sms/Makefile.am | 2 +- tests/sms/sms_test.c | 6 +- tests/smscb/Makefile.am | 2 +- tests/smscb/smscb_test.c | 2 +- tests/timer/timer_test.c | 4 +- tests/ussd/Makefile.am | 2 +- tests/ussd/ussd_test.c | 2 +- 97 files changed, 241 insertions(+), 176 deletions(-) create mode 100644 include/osmocom/core/Makefile.am create mode 100644 include/osmocom/core/backtrace.h rename include/{osmocore => osmocom/core}/bits.h (100%) rename include/{osmocore => osmocom/core}/bitvec.h (100%) rename include/{osmocore => osmocom/core}/crc16.h (100%) rename include/{osmocore => osmocom/core}/gsmtap.h (100%) rename include/{osmocore => osmocom/core}/gsmtap_util.h (100%) rename include/{osmocore => osmocom/core}/linuxlist.h (100%) rename include/{osmocore => osmocom/core}/logging.h (99%) rename include/{osmocore => osmocom/core}/msgb.h (98%) rename include/{osmocore => osmocom/core}/msgfile.h (100%) rename include/{osmocore => osmocom/core}/panic.h (100%) rename include/{osmocore => osmocom/core}/plugin.h (100%) rename include/{osmocore => osmocom/core}/process.h (100%) rename include/{osmocore => osmocom/core}/rate_ctr.h (98%) rename include/{osmocore => osmocom/core}/select.h (92%) rename include/{osmocore => osmocom/core}/signal.h (100%) rename include/{osmocore => osmocom/core}/statistics.h (100%) rename include/{osmocore => osmocom/core}/talloc.h (100%) rename include/{osmocore => osmocom/core}/timer.h (98%) rename include/{osmocore => osmocom/core}/utils.h (100%) rename include/{osmocore => osmocom/core}/write_queue.h (100%) create mode 100644 include/osmocom/gsm/Makefile.am rename include/{osmocore => osmocom/gsm}/comp128.h (100%) rename include/{osmocore => osmocom/gsm}/gsm0480.h (84%) rename include/{osmocore => osmocom/gsm}/gsm0808.h (100%) rename include/{osmocore => osmocom/gsm}/gsm48.h (90%) rename include/{osmocore => osmocom/gsm}/gsm48_ie.h (96%) rename include/{osmocore => osmocom/gsm}/gsm_utils.h (99%) rename include/{osmocore => osmocom/gsm}/mncc.h (100%) create mode 100644 include/osmocom/gsm/protocol/Makefile.am rename include/{osmocore => osmocom/gsm}/protocol/gsm_03_41.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_04_08.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_04_11.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_04_12.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_04_80.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_08_08.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_08_58.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_12_21.h (99%) rename include/{osmocore => osmocom/gsm}/rsl.h (94%) rename include/{osmocore => osmocom/gsm}/rxlev_stat.h (100%) rename include/{osmocore => osmocom/gsm}/tlv.h (99%) delete mode 100644 include/osmocore/Makefile.am delete mode 100644 include/osmocore/protocol/Makefile.am create mode 100644 libosmogsm.pc.in create mode 100644 src/backtrace.c create mode 100644 src/gsm/Makefile.am rename src/{ => gsm}/comp128.c (100%) rename src/{ => gsm}/gprs_cipher_core.c (96%) rename src/{ => gsm}/gsm0480.c (98%) rename src/{ => gsm}/gsm0808.c (98%) rename src/{ => gsm}/gsm48.c (98%) rename src/{ => gsm}/gsm48_ie.c (99%) rename src/{ => gsm}/gsm_utils.c (95%) rename src/{ => gsm}/rsl.c (99%) rename src/{ => gsm}/rxlev_stat.c (96%) rename src/{ => gsm}/tlv_parser.c (98%)
From: Pablo Neira Ayuso pablo@gnumonks.org
This patch moves the GSM-specific functions to the new library libosmogsm which is provided by libosmocore.
I have also moved generate_backtrace() to backtrace.c instead of gsm_utils.c, otherwise the timer and msgfile tests depend on libosmogsm.
Signed-off-by: Pablo Neira Ayuso pablo@gnumonks.org --- Makefile.am | 2 +- configure.in | 2 + include/osmocore/Makefile.am | 3 +- include/osmocore/backtrace.h | 6 ++++ include/osmocore/gsm_utils.h | 1 - libosmogsm.pc.in | 11 ++++++++ src/Makefile.am | 14 +++++----- src/backtrace.c | 50 ++++++++++++++++++++++++++++++++++++++ src/gsm/Makefile.am | 13 ++++++++++ src/{ => gsm}/comp128.c | 0 src/{ => gsm}/gprs_cipher_core.c | 0 src/{ => gsm}/gsm0480.c | 0 src/{ => gsm}/gsm0808.c | 0 src/{ => gsm}/gsm48.c | 0 src/{ => gsm}/gsm48_ie.c | 0 src/{ => gsm}/gsm_utils.c | 23 ----------------- src/{ => gsm}/rsl.c | 0 src/{ => gsm}/rxlev_stat.c | 0 src/{ => gsm}/tlv_parser.c | 0 src/panic.c | 1 + tests/sms/Makefile.am | 2 +- tests/smscb/Makefile.am | 2 +- tests/ussd/Makefile.am | 2 +- 23 files changed, 96 insertions(+), 36 deletions(-) create mode 100644 include/osmocore/backtrace.h create mode 100644 libosmogsm.pc.in create mode 100644 src/backtrace.c create mode 100644 src/gsm/Makefile.am rename src/{ => gsm}/comp128.c (100%) rename src/{ => gsm}/gprs_cipher_core.c (100%) rename src/{ => gsm}/gsm0480.c (100%) rename src/{ => gsm}/gsm0808.c (100%) rename src/{ => gsm}/gsm48.c (100%) rename src/{ => gsm}/gsm48_ie.c (100%) rename src/{ => gsm}/gsm_utils.c (96%) rename src/{ => gsm}/rsl.c (100%) rename src/{ => gsm}/rxlev_stat.c (100%) rename src/{ => gsm}/tlv_parser.c (100%)
diff --git a/Makefile.am b/Makefile.am index 93254e8..e391de8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,7 +5,7 @@ INCLUDES = $(all_includes) -I$(top_srcdir)/include SUBDIRS = include src tests
pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = libosmocore.pc libosmocodec.pc libosmovty.pc +pkgconfig_DATA = libosmocore.pc libosmocodec.pc libosmovty.pc libosmogsm.pc
BUILT_SOURCES = $(top_srcdir)/.version $(top_srcdir)/.version: diff --git a/configure.in b/configure.in index 165cecb..b572bf4 100644 --- a/configure.in +++ b/configure.in @@ -101,6 +101,7 @@ AC_OUTPUT( libosmocore.pc libosmocodec.pc libosmovty.pc + libosmogsm.pc include/osmocom/Makefile include/osmocom/vty/Makefile include/osmocom/codec/Makefile @@ -111,6 +112,7 @@ AC_OUTPUT( src/Makefile src/vty/Makefile src/codec/Makefile + src/gsm/Makefile tests/Makefile tests/timer/Makefile tests/sms/Makefile diff --git a/include/osmocore/Makefile.am b/include/osmocore/Makefile.am index a3b12ef..b65589a 100644 --- a/include/osmocore/Makefile.am +++ b/include/osmocore/Makefile.am @@ -2,7 +2,8 @@ osmocore_HEADERS = signal.h linuxlist.h timer.h select.h msgb.h bits.h \ tlv.h bitvec.h comp128.h statistics.h gsm_utils.h utils.h \ gsmtap.h write_queue.h rsl.h gsm48.h rxlev_stat.h mncc.h \ gsm48_ie.h logging.h gsm0808.h rate_ctr.h gsmtap_util.h \ - plugin.h crc16.h panic.h process.h gsm0480.h msgfile.h + plugin.h crc16.h panic.h process.h gsm0480.h msgfile.h \ + backtrace.h
if ENABLE_TALLOC osmocore_HEADERS += talloc.h diff --git a/include/osmocore/backtrace.h b/include/osmocore/backtrace.h new file mode 100644 index 0000000..bbbb2c2 --- /dev/null +++ b/include/osmocore/backtrace.h @@ -0,0 +1,6 @@ +#ifndef _OSMO_BACKTRACE_H_ +#define _OSMO_BACKTRACE_H_ + +void generate_backtrace(); + +#endif diff --git a/include/osmocore/gsm_utils.h b/include/osmocore/gsm_utils.h index 0aadd2e..19adb70 100644 --- a/include/osmocore/gsm_utils.h +++ b/include/osmocore/gsm_utils.h @@ -114,5 +114,4 @@ int gprs_tlli_type(uint32_t tlli);
uint32_t gprs_tmsi2tlli(uint32_t p_tmsi, enum gprs_tlli_type type);
-void generate_backtrace(); #endif diff --git a/libosmogsm.pc.in b/libosmogsm.pc.in new file mode 100644 index 0000000..753bb3a --- /dev/null +++ b/libosmogsm.pc.in @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: Osmocom GSM Core Library +Description: GSM Core Library +Version: @VERSION@ +Libs: -L${libdir} -losmogsm +Cflags: -I${includedir}/ + diff --git a/src/Makefile.am b/src/Makefile.am index 94492c5..c5c8a21 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS=. vty codec +SUBDIRS=. vty codec gsm
# This is _NOT_ the library release version, it's an API version. # Please read Chapter 6 "Library interface versions" of the libtool documentation before making any modification @@ -9,12 +9,12 @@ AM_CFLAGS = -fPIC -Wall
lib_LTLIBRARIES = libosmocore.la
-libosmocore_la_SOURCES = timer.c select.c signal.c msgb.c rxlev_stat.c bits.c \ - tlv_parser.c bitvec.c comp128.c gsm_utils.c statistics.c \ - write_queue.c utils.c rsl.c gsm48.c gsm48_ie.c \ - logging.c logging_syslog.c gsm0808.c rate_ctr.c \ - gsmtap_util.c gprs_cipher_core.c crc16.c panic.c \ - process.c gsm0480.c +libosmocore_la_SOURCES = timer.c select.c signal.c msgb.c bits.c \ + bitvec.c statistics.c \ + write_queue.c utils.c \ + logging.c logging_syslog.c rate_ctr.c \ + gsmtap_util.c crc16.c panic.c backtrace.c \ + process.c
if ENABLE_PLUGIN libosmocore_la_SOURCES += plugin.c diff --git a/src/backtrace.c b/src/backtrace.c new file mode 100644 index 0000000..4239445 --- /dev/null +++ b/src/backtrace.c @@ -0,0 +1,50 @@ +/* + * (C) 2008 by Daniel Willmann daniel@totalueberwachung.de + * (C) 2009 by Holger Hans Peter Freyther zecke@selfish.org + * (C) 2009-2010 by Harald Welte laforge@gnumonks.org + * (C) 2010 by Nico Golde nico@ngolde.de + * + * All Rights Reserved + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + */ + +#include <stdio.h> +#include <stdlib.h> +#include <osmocore/utils.h> +#include "config.h" + +#ifdef HAVE_EXECINFO_H +#include <execinfo.h> +void generate_backtrace() +{ + int i, nptrs; + void *buffer[100]; + char **strings; + + nptrs = backtrace(buffer, ARRAY_SIZE(buffer)); + printf("backtrace() returned %d addresses\n", nptrs); + + strings = backtrace_symbols(buffer, nptrs); + if (!strings) + return; + + for (i = 1; i < nptrs; i++) + printf("%s\n", strings[i]); + + free(strings); +} +#endif diff --git a/src/gsm/Makefile.am b/src/gsm/Makefile.am new file mode 100644 index 0000000..a8c2e56 --- /dev/null +++ b/src/gsm/Makefile.am @@ -0,0 +1,13 @@ +# This is _NOT_ the library release version, it's an API version. +# Please read Chapter 6 "Library interface versions" of the libtool documentation before making any modification +LIBVERSION=0:0:0 + +INCLUDES = $(all_includes) -I$(top_srcdir)/include +AM_CFLAGS = -fPIC -Wall + +lib_LTLIBRARIES = libosmogsm.la + +libosmogsm_la_SOURCES = rxlev_stat.c tlv_parser.c comp128.c gsm_utils.c \ + rsl.c gsm48.c gsm48_ie.c gsm0808.c \ + gprs_cipher_core.c gsm0480.c +libosmogsm_la_LIBADD = $(top_builddir)/src/libosmocore.la diff --git a/src/comp128.c b/src/gsm/comp128.c similarity index 100% rename from src/comp128.c rename to src/gsm/comp128.c diff --git a/src/gprs_cipher_core.c b/src/gsm/gprs_cipher_core.c similarity index 100% rename from src/gprs_cipher_core.c rename to src/gsm/gprs_cipher_core.c diff --git a/src/gsm0480.c b/src/gsm/gsm0480.c similarity index 100% rename from src/gsm0480.c rename to src/gsm/gsm0480.c diff --git a/src/gsm0808.c b/src/gsm/gsm0808.c similarity index 100% rename from src/gsm0808.c rename to src/gsm/gsm0808.c diff --git a/src/gsm48.c b/src/gsm/gsm48.c similarity index 100% rename from src/gsm48.c rename to src/gsm/gsm48.c diff --git a/src/gsm48_ie.c b/src/gsm/gsm48_ie.c similarity index 100% rename from src/gsm48_ie.c rename to src/gsm/gsm48_ie.c diff --git a/src/gsm_utils.c b/src/gsm/gsm_utils.c similarity index 96% rename from src/gsm_utils.c rename to src/gsm/gsm_utils.c index 31e3cd6..54a13ad 100644 --- a/src/gsm_utils.c +++ b/src/gsm/gsm_utils.c @@ -334,29 +334,6 @@ enum gsm_band gsm_band_parse(const char* mhz) } }
- -#ifdef HAVE_EXECINFO_H -#include <execinfo.h> -void generate_backtrace() -{ - int i, nptrs; - void *buffer[100]; - char **strings; - - nptrs = backtrace(buffer, ARRAY_SIZE(buffer)); - printf("backtrace() returned %d addresses\n", nptrs); - - strings = backtrace_symbols(buffer, nptrs); - if (!strings) - return; - - for (i = 1; i < nptrs; i++) - printf("%s\n", strings[i]); - - free(strings); -} -#endif - enum gsm_band gsm_arfcn2band(uint16_t arfcn) { int is_pcs = arfcn & ARFCN_PCS; diff --git a/src/rsl.c b/src/gsm/rsl.c similarity index 100% rename from src/rsl.c rename to src/gsm/rsl.c diff --git a/src/rxlev_stat.c b/src/gsm/rxlev_stat.c similarity index 100% rename from src/rxlev_stat.c rename to src/gsm/rxlev_stat.c diff --git a/src/tlv_parser.c b/src/gsm/tlv_parser.c similarity index 100% rename from src/tlv_parser.c rename to src/gsm/tlv_parser.c diff --git a/src/panic.c b/src/panic.c index 5fb7b56..21e8fd5 100644 --- a/src/panic.c +++ b/src/panic.c @@ -22,6 +22,7 @@
#include <osmocore/gsm_utils.h> #include <osmocore/panic.h> +#include <osmocore/backtrace.h>
#include "../config.h"
diff --git a/tests/sms/Makefile.am b/tests/sms/Makefile.am index a8f1ff6..fa4e387 100644 --- a/tests/sms/Makefile.am +++ b/tests/sms/Makefile.am @@ -2,4 +2,4 @@ INCLUDES = $(all_includes) -I$(top_srcdir)/include noinst_PROGRAMS = sms_test
sms_test_SOURCES = sms_test.c -sms_test_LDADD = $(top_builddir)/src/libosmocore.la +sms_test_LDADD = $(top_builddir)/src/libosmocore.la $(top_builddir)/src/gsm/libosmogsm.la diff --git a/tests/smscb/Makefile.am b/tests/smscb/Makefile.am index 1d0e538..9a6fb4f 100644 --- a/tests/smscb/Makefile.am +++ b/tests/smscb/Makefile.am @@ -2,4 +2,4 @@ INCLUDES = $(all_includes) -I$(top_srcdir)/include noinst_PROGRAMS = smscb_test
smscb_test_SOURCES = smscb_test.c -smscb_test_LDADD = $(top_builddir)/src/libosmocore.la +smscb_test_LDADD = $(top_builddir)/src/libosmocore.la $(top_builddir)/src/gsm/libosmogsm.la diff --git a/tests/ussd/Makefile.am b/tests/ussd/Makefile.am index d29506c..ef9aa49 100644 --- a/tests/ussd/Makefile.am +++ b/tests/ussd/Makefile.am @@ -2,4 +2,4 @@ INCLUDES = $(all_includes) -I$(top_srcdir)/include noinst_PROGRAMS = ussd_test
ussd_test_SOURCES = ussd_test.c -ussd_test_LDADD = $(top_builddir)/src/libosmocore.la +ussd_test_LDADD = $(top_builddir)/src/libosmocore.la $(top_builddir)/src/gsm/libosmogsm.la
From: Pablo Neira Ayuso pablo@gnumonks.org
This patch moves all GSM-specific definitions to include/osmocom/gsm. Moreover, the headers in include/osmocore/ have been moved to include/osmocom/core.
This has been proposed by Harald Welte and Sylvain Munaunt.
Tested with `make distcheck'.
Signed-off-by: Pablo Neira Ayuso pablo@gnumonks.org --- configure.in | 5 +++-- include/Makefile.am | 2 +- include/osmocom/Makefile.am | 4 ++-- include/osmocom/core/Makefile.am | 12 ++++++++++++ include/{osmocore => osmocom/core}/backtrace.h | 0 include/{osmocore => osmocom/core}/bits.h | 0 include/{osmocore => osmocom/core}/bitvec.h | 0 include/{osmocore => osmocom/core}/crc16.h | 0 include/{osmocore => osmocom/core}/gsmtap.h | 0 include/{osmocore => osmocom/core}/gsmtap_util.h | 0 include/{osmocore => osmocom/core}/linuxlist.h | 0 include/{osmocore => osmocom/core}/logging.h | 2 +- include/{osmocore => osmocom/core}/msgb.h | 6 +++--- include/{osmocore => osmocom/core}/msgfile.h | 0 include/{osmocore => osmocom/core}/panic.h | 0 include/{osmocore => osmocom/core}/plugin.h | 0 include/{osmocore => osmocom/core}/process.h | 0 include/{osmocore => osmocom/core}/rate_ctr.h | 2 +- include/{osmocore => osmocom/core}/select.h | 2 +- include/{osmocore => osmocom/core}/signal.h | 0 include/{osmocore => osmocom/core}/statistics.h | 0 include/{osmocore => osmocom/core}/talloc.h | 0 include/{osmocore => osmocom/core}/timer.h | 2 +- include/{osmocore => osmocom/core}/utils.h | 0 include/{osmocore => osmocom/core}/write_queue.h | 0 include/osmocom/crypt/gprs_cipher.h | 2 +- include/osmocom/gsm/Makefile.am | 6 ++++++ include/{osmocore => osmocom/gsm}/comp128.h | 0 include/{osmocore => osmocom/gsm}/gsm0480.h | 6 +++--- include/{osmocore => osmocom/gsm}/gsm0808.h | 0 include/{osmocore => osmocom/gsm}/gsm48.h | 6 +++--- include/{osmocore => osmocom/gsm}/gsm48_ie.h | 8 ++++---- include/{osmocore => osmocom/gsm}/gsm_utils.h | 0 include/{osmocore => osmocom/gsm}/mncc.h | 0 include/osmocom/gsm/protocol/Makefile.am | 6 ++++++ .../{osmocore => osmocom/gsm}/protocol/gsm_03_41.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_04_08.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_04_11.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_04_12.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_04_80.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_08_08.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_08_58.h | 0 .../{osmocore => osmocom/gsm}/protocol/gsm_12_21.h | 2 +- include/{osmocore => osmocom/gsm}/rsl.h | 4 ++-- include/{osmocore => osmocom/gsm}/rxlev_stat.h | 0 include/{osmocore => osmocom/gsm}/tlv.h | 2 +- include/osmocom/vty/telnet_interface.h | 4 ++-- include/osmocore/Makefile.am | 14 -------------- include/osmocore/protocol/Makefile.am | 6 ------ src/backtrace.c | 2 +- src/bits.c | 2 +- src/bitvec.c | 2 +- src/crc16.c | 2 +- src/gsm/gprs_cipher_core.c | 6 +++--- src/gsm/gsm0480.c | 10 +++++----- src/gsm/gsm0808.c | 6 +++--- src/gsm/gsm48.c | 8 ++++---- src/gsm/gsm48_ie.c | 12 ++++++------ src/gsm/gsm_utils.c | 6 +++--- src/gsm/rsl.c | 4 ++-- src/gsm/rxlev_stat.c | 4 ++-- src/gsm/tlv_parser.c | 4 ++-- src/gsmtap_util.c | 14 +++++++------- src/logging.c | 6 +++--- src/logging_syslog.c | 6 +++--- src/msgb.c | 4 ++-- src/msgfile.c | 4 ++-- src/panic.c | 6 +++--- src/plugin.c | 2 +- src/rate_ctr.c | 10 +++++----- src/select.c | 6 +++--- src/signal.c | 6 +++--- src/statistics.c | 6 +++--- src/talloc.c | 2 +- src/timer.c | 2 +- src/utils.c | 2 +- src/vty/buffer.c | 2 +- src/vty/command.c | 2 +- src/vty/logging_vty.c | 6 +++--- src/vty/telnet_interface.c | 6 +++--- src/vty/utils.c | 8 ++++---- src/vty/vector.c | 2 +- src/vty/vty.c | 2 +- src/write_queue.c | 2 +- tests/msgfile/msgfile_test.c | 2 +- tests/sms/sms_test.c | 6 +++--- tests/smscb/smscb_test.c | 2 +- tests/timer/timer_test.c | 4 ++-- tests/ussd/ussd_test.c | 2 +- 89 files changed, 149 insertions(+), 144 deletions(-) create mode 100644 include/osmocom/core/Makefile.am rename include/{osmocore => osmocom/core}/backtrace.h (100%) rename include/{osmocore => osmocom/core}/bits.h (100%) rename include/{osmocore => osmocom/core}/bitvec.h (100%) rename include/{osmocore => osmocom/core}/crc16.h (100%) rename include/{osmocore => osmocom/core}/gsmtap.h (100%) rename include/{osmocore => osmocom/core}/gsmtap_util.h (100%) rename include/{osmocore => osmocom/core}/linuxlist.h (100%) rename include/{osmocore => osmocom/core}/logging.h (99%) rename include/{osmocore => osmocom/core}/msgb.h (98%) rename include/{osmocore => osmocom/core}/msgfile.h (100%) rename include/{osmocore => osmocom/core}/panic.h (100%) rename include/{osmocore => osmocom/core}/plugin.h (100%) rename include/{osmocore => osmocom/core}/process.h (100%) rename include/{osmocore => osmocom/core}/rate_ctr.h (98%) rename include/{osmocore => osmocom/core}/select.h (92%) rename include/{osmocore => osmocom/core}/signal.h (100%) rename include/{osmocore => osmocom/core}/statistics.h (100%) rename include/{osmocore => osmocom/core}/talloc.h (100%) rename include/{osmocore => osmocom/core}/timer.h (98%) rename include/{osmocore => osmocom/core}/utils.h (100%) rename include/{osmocore => osmocom/core}/write_queue.h (100%) create mode 100644 include/osmocom/gsm/Makefile.am rename include/{osmocore => osmocom/gsm}/comp128.h (100%) rename include/{osmocore => osmocom/gsm}/gsm0480.h (84%) rename include/{osmocore => osmocom/gsm}/gsm0808.h (100%) rename include/{osmocore => osmocom/gsm}/gsm48.h (90%) rename include/{osmocore => osmocom/gsm}/gsm48_ie.h (96%) rename include/{osmocore => osmocom/gsm}/gsm_utils.h (100%) rename include/{osmocore => osmocom/gsm}/mncc.h (100%) create mode 100644 include/osmocom/gsm/protocol/Makefile.am rename include/{osmocore => osmocom/gsm}/protocol/gsm_03_41.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_04_08.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_04_11.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_04_12.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_04_80.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_08_08.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_08_58.h (100%) rename include/{osmocore => osmocom/gsm}/protocol/gsm_12_21.h (99%) rename include/{osmocore => osmocom/gsm}/rsl.h (94%) rename include/{osmocore => osmocom/gsm}/rxlev_stat.h (100%) rename include/{osmocore => osmocom/gsm}/tlv.h (99%) delete mode 100644 include/osmocore/Makefile.am delete mode 100644 include/osmocore/protocol/Makefile.am
diff --git a/configure.in b/configure.in index b572bf4..ead18f0 100644 --- a/configure.in +++ b/configure.in @@ -106,8 +106,9 @@ AC_OUTPUT( include/osmocom/vty/Makefile include/osmocom/codec/Makefile include/osmocom/crypt/Makefile - include/osmocore/Makefile - include/osmocore/protocol/Makefile + include/osmocom/gsm/Makefile + include/osmocom/gsm/protocol/Makefile + include/osmocom/core/Makefile include/Makefile src/Makefile src/vty/Makefile diff --git a/include/Makefile.am b/include/Makefile.am index 185c696..3578a80 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1 +1 @@ -SUBDIRS = osmocom osmocore +SUBDIRS = osmocom diff --git a/include/osmocom/Makefile.am b/include/osmocom/Makefile.am index ec548fb..21f4f2d 100644 --- a/include/osmocom/Makefile.am +++ b/include/osmocom/Makefile.am @@ -1,5 +1,5 @@ if ENABLE_VTY -SUBDIRS = vty codec crypt +SUBDIRS = vty codec crypt gsm core else -SUBDIRS = codec crypt +SUBDIRS = codec crypt gsm core endif diff --git a/include/osmocom/core/Makefile.am b/include/osmocom/core/Makefile.am new file mode 100644 index 0000000..6109f47 --- /dev/null +++ b/include/osmocom/core/Makefile.am @@ -0,0 +1,12 @@ +osmocore_HEADERS = signal.h linuxlist.h timer.h select.h msgb.h bits.h \ + bitvec.h statistics.h utils.h \ + gsmtap.h write_queue.h \ + logging.h rate_ctr.h gsmtap_util.h \ + plugin.h crc16.h panic.h process.h msgfile.h \ + backtrace.h + +if ENABLE_TALLOC +osmocore_HEADERS += talloc.h +endif + +osmocoredir = $(includedir)/osmocom/core diff --git a/include/osmocore/backtrace.h b/include/osmocom/core/backtrace.h similarity index 100% rename from include/osmocore/backtrace.h rename to include/osmocom/core/backtrace.h diff --git a/include/osmocore/bits.h b/include/osmocom/core/bits.h similarity index 100% rename from include/osmocore/bits.h rename to include/osmocom/core/bits.h diff --git a/include/osmocore/bitvec.h b/include/osmocom/core/bitvec.h similarity index 100% rename from include/osmocore/bitvec.h rename to include/osmocom/core/bitvec.h diff --git a/include/osmocore/crc16.h b/include/osmocom/core/crc16.h similarity index 100% rename from include/osmocore/crc16.h rename to include/osmocom/core/crc16.h diff --git a/include/osmocore/gsmtap.h b/include/osmocom/core/gsmtap.h similarity index 100% rename from include/osmocore/gsmtap.h rename to include/osmocom/core/gsmtap.h diff --git a/include/osmocore/gsmtap_util.h b/include/osmocom/core/gsmtap_util.h similarity index 100% rename from include/osmocore/gsmtap_util.h rename to include/osmocom/core/gsmtap_util.h diff --git a/include/osmocore/linuxlist.h b/include/osmocom/core/linuxlist.h similarity index 100% rename from include/osmocore/linuxlist.h rename to include/osmocom/core/linuxlist.h diff --git a/include/osmocore/logging.h b/include/osmocom/core/logging.h similarity index 99% rename from include/osmocore/logging.h rename to include/osmocom/core/logging.h index a2c63e9..649c4e7 100644 --- a/include/osmocore/logging.h +++ b/include/osmocom/core/logging.h @@ -3,7 +3,7 @@
#include <stdio.h> #include <stdint.h> -#include <osmocore/linuxlist.h> +#include <osmocom/core/linuxlist.h>
#define LOG_MAX_CATEGORY 32 #define LOG_MAX_CTX 8 diff --git a/include/osmocore/msgb.h b/include/osmocom/core/msgb.h similarity index 98% rename from include/osmocore/msgb.h rename to include/osmocom/core/msgb.h index c4f4430..57b5d7f 100644 --- a/include/osmocore/msgb.h +++ b/include/osmocom/core/msgb.h @@ -21,8 +21,8 @@ */
#include <stdint.h> -#include "linuxlist.h" -#include "utils.h" +#include <osmocom/core/linuxlist.h> +#include <osmocom/core/utils.h>
#define MSGB_DEBUG
@@ -62,7 +62,7 @@ extern struct msgb *msgb_dequeue(struct llist_head *queue); extern void msgb_reset(struct msgb *m);
#ifdef MSGB_DEBUG -#include <osmocore/panic.h> +#include <osmocom/core/panic.h> #define MSGB_ABORT(msg, fmt, args ...) do { \ osmo_panic("msgb(%p): " fmt, msg, ## args); \ } while(0) diff --git a/include/osmocore/msgfile.h b/include/osmocom/core/msgfile.h similarity index 100% rename from include/osmocore/msgfile.h rename to include/osmocom/core/msgfile.h diff --git a/include/osmocore/panic.h b/include/osmocom/core/panic.h similarity index 100% rename from include/osmocore/panic.h rename to include/osmocom/core/panic.h diff --git a/include/osmocore/plugin.h b/include/osmocom/core/plugin.h similarity index 100% rename from include/osmocore/plugin.h rename to include/osmocom/core/plugin.h diff --git a/include/osmocore/process.h b/include/osmocom/core/process.h similarity index 100% rename from include/osmocore/process.h rename to include/osmocom/core/process.h diff --git a/include/osmocore/rate_ctr.h b/include/osmocom/core/rate_ctr.h similarity index 98% rename from include/osmocore/rate_ctr.h rename to include/osmocom/core/rate_ctr.h index f887d9a..dba573d 100644 --- a/include/osmocore/rate_ctr.h +++ b/include/osmocom/core/rate_ctr.h @@ -3,7 +3,7 @@
#include <stdint.h>
-#include <osmocore/linuxlist.h> +#include <osmocom/core/linuxlist.h>
#define RATE_CTR_INTV_NUM 4
diff --git a/include/osmocore/select.h b/include/osmocom/core/select.h similarity index 92% rename from include/osmocore/select.h rename to include/osmocom/core/select.h index 2d8b3ec..5ca21c3 100644 --- a/include/osmocore/select.h +++ b/include/osmocom/core/select.h @@ -1,7 +1,7 @@ #ifndef _BSC_SELECT_H #define _BSC_SELECT_H
-#include "linuxlist.h" +#include <osmocom/core/linuxlist.h>
#define BSC_FD_READ 0x0001 #define BSC_FD_WRITE 0x0002 diff --git a/include/osmocore/signal.h b/include/osmocom/core/signal.h similarity index 100% rename from include/osmocore/signal.h rename to include/osmocom/core/signal.h diff --git a/include/osmocore/statistics.h b/include/osmocom/core/statistics.h similarity index 100% rename from include/osmocore/statistics.h rename to include/osmocom/core/statistics.h diff --git a/include/osmocore/talloc.h b/include/osmocom/core/talloc.h similarity index 100% rename from include/osmocore/talloc.h rename to include/osmocom/core/talloc.h diff --git a/include/osmocore/timer.h b/include/osmocom/core/timer.h similarity index 98% rename from include/osmocore/timer.h rename to include/osmocom/core/timer.h index fee888b..1966478 100644 --- a/include/osmocore/timer.h +++ b/include/osmocom/core/timer.h @@ -23,7 +23,7 @@
#include <sys/time.h>
-#include "linuxlist.h" +#include <osmocom/core/linuxlist.h>
/** * Timer management: diff --git a/include/osmocore/utils.h b/include/osmocom/core/utils.h similarity index 100% rename from include/osmocore/utils.h rename to include/osmocom/core/utils.h diff --git a/include/osmocore/write_queue.h b/include/osmocom/core/write_queue.h similarity index 100% rename from include/osmocore/write_queue.h rename to include/osmocom/core/write_queue.h diff --git a/include/osmocom/crypt/gprs_cipher.h b/include/osmocom/crypt/gprs_cipher.h index 3e514ec..3051071 100644 --- a/include/osmocom/crypt/gprs_cipher.h +++ b/include/osmocom/crypt/gprs_cipher.h @@ -1,7 +1,7 @@ #ifndef _GPRS_CIPHER_H #define _GPRS_CIPHER_H
-#include <osmocore/linuxlist.h> +#include <osmocom/core/linuxlist.h>
#define GSM0464_CIPH_MAX_BLOCK 1523
diff --git a/include/osmocom/gsm/Makefile.am b/include/osmocom/gsm/Makefile.am new file mode 100644 index 0000000..8685fc9 --- /dev/null +++ b/include/osmocom/gsm/Makefile.am @@ -0,0 +1,6 @@ +osmogsm_HEADERS = comp128.h gsm0808.h gsm48_ie.h mncc.h rxlev_stat.h \ + gsm0480.h gsm48.h gsm_utils.h rsl.h tlv.h + +SUBDIRS = protocol + +osmogsmdir = $(includedir)/osmocom/gsm diff --git a/include/osmocore/comp128.h b/include/osmocom/gsm/comp128.h similarity index 100% rename from include/osmocore/comp128.h rename to include/osmocom/gsm/comp128.h diff --git a/include/osmocore/gsm0480.h b/include/osmocom/gsm/gsm0480.h similarity index 84% rename from include/osmocore/gsm0480.h rename to include/osmocom/gsm/gsm0480.h index b504332..d6626d6 100644 --- a/include/osmocore/gsm0480.h +++ b/include/osmocom/gsm/gsm0480.h @@ -1,9 +1,9 @@ #ifndef gsm0480_h #define gsm0480_h
-#include "msgb.h" -#include "protocol/gsm_04_08.h" -#include "protocol/gsm_04_80.h" +#include <osmocom/core/msgb.h> +#include <osmocom/gsm/protocol/gsm_04_08.h> +#include <osmocom/gsm/protocol/gsm_04_80.h>
#define MAX_LEN_USSD_STRING 31
diff --git a/include/osmocore/gsm0808.h b/include/osmocom/gsm/gsm0808.h similarity index 100% rename from include/osmocore/gsm0808.h rename to include/osmocom/gsm/gsm0808.h diff --git a/include/osmocore/gsm48.h b/include/osmocom/gsm/gsm48.h similarity index 90% rename from include/osmocore/gsm48.h rename to include/osmocom/gsm/gsm48.h index ffe0399..1e9403b 100644 --- a/include/osmocore/gsm48.h +++ b/include/osmocom/gsm/gsm48.h @@ -1,9 +1,9 @@ #ifndef _OSMOCORE_GSM48_H #define _OSMOCORE_GSM48_H
-#include <osmocore/tlv.h> -#include <osmocore/protocol/gsm_04_08.h> -#include <osmocore/gsm48_ie.h> +#include <osmocom/gsm/tlv.h> +#include <osmocom/gsm/protocol/gsm_04_08.h> +#include <osmocom/gsm/gsm48_ie.h>
/* A parsed GPRS routing area */ struct gprs_ra_id { diff --git a/include/osmocore/gsm48_ie.h b/include/osmocom/gsm/gsm48_ie.h similarity index 96% rename from include/osmocore/gsm48_ie.h rename to include/osmocom/gsm/gsm48_ie.h index fa66159..f4fce25 100644 --- a/include/osmocore/gsm48_ie.h +++ b/include/osmocom/gsm/gsm48_ie.h @@ -5,10 +5,10 @@ #include <string.h> #include <errno.h>
-#include <osmocore/msgb.h> -#include <osmocore/tlv.h> -#include <osmocore/mncc.h> -#include <osmocore/protocol/gsm_04_08.h> +#include <osmocom/core/msgb.h> +#include <osmocom/gsm/tlv.h> +#include <osmocom/gsm/mncc.h> +#include <osmocom/gsm/protocol/gsm_04_08.h>
/* decode a 'called/calling/connect party BCD number' as in 10.5.4.7 */ int gsm48_decode_bcd_number(char *output, int output_len, diff --git a/include/osmocore/gsm_utils.h b/include/osmocom/gsm/gsm_utils.h similarity index 100% rename from include/osmocore/gsm_utils.h rename to include/osmocom/gsm/gsm_utils.h diff --git a/include/osmocore/mncc.h b/include/osmocom/gsm/mncc.h similarity index 100% rename from include/osmocore/mncc.h rename to include/osmocom/gsm/mncc.h diff --git a/include/osmocom/gsm/protocol/Makefile.am b/include/osmocom/gsm/protocol/Makefile.am new file mode 100644 index 0000000..8483f10 --- /dev/null +++ b/include/osmocom/gsm/protocol/Makefile.am @@ -0,0 +1,6 @@ +osmogsm_proto_HEADERS = gsm_03_41.h \ + gsm_04_08.h gsm_04_11.h gsm_04_12.h gsm_04_80.h \ + gsm_08_08.h gsm_08_58.h \ + gsm_12_21.h + +osmogsm_protodir = $(includedir)/osmocom/gsm/protocol diff --git a/include/osmocore/protocol/gsm_03_41.h b/include/osmocom/gsm/protocol/gsm_03_41.h similarity index 100% rename from include/osmocore/protocol/gsm_03_41.h rename to include/osmocom/gsm/protocol/gsm_03_41.h diff --git a/include/osmocore/protocol/gsm_04_08.h b/include/osmocom/gsm/protocol/gsm_04_08.h similarity index 100% rename from include/osmocore/protocol/gsm_04_08.h rename to include/osmocom/gsm/protocol/gsm_04_08.h diff --git a/include/osmocore/protocol/gsm_04_11.h b/include/osmocom/gsm/protocol/gsm_04_11.h similarity index 100% rename from include/osmocore/protocol/gsm_04_11.h rename to include/osmocom/gsm/protocol/gsm_04_11.h diff --git a/include/osmocore/protocol/gsm_04_12.h b/include/osmocom/gsm/protocol/gsm_04_12.h similarity index 100% rename from include/osmocore/protocol/gsm_04_12.h rename to include/osmocom/gsm/protocol/gsm_04_12.h diff --git a/include/osmocore/protocol/gsm_04_80.h b/include/osmocom/gsm/protocol/gsm_04_80.h similarity index 100% rename from include/osmocore/protocol/gsm_04_80.h rename to include/osmocom/gsm/protocol/gsm_04_80.h diff --git a/include/osmocore/protocol/gsm_08_08.h b/include/osmocom/gsm/protocol/gsm_08_08.h similarity index 100% rename from include/osmocore/protocol/gsm_08_08.h rename to include/osmocom/gsm/protocol/gsm_08_08.h diff --git a/include/osmocore/protocol/gsm_08_58.h b/include/osmocom/gsm/protocol/gsm_08_58.h similarity index 100% rename from include/osmocore/protocol/gsm_08_58.h rename to include/osmocom/gsm/protocol/gsm_08_58.h diff --git a/include/osmocore/protocol/gsm_12_21.h b/include/osmocom/gsm/protocol/gsm_12_21.h similarity index 99% rename from include/osmocore/protocol/gsm_12_21.h rename to include/osmocom/gsm/protocol/gsm_12_21.h index 9cae45d..b8b00f3 100644 --- a/include/osmocore/protocol/gsm_12_21.h +++ b/include/osmocom/gsm/protocol/gsm_12_21.h @@ -24,7 +24,7 @@ */
#include <stdint.h> -#include <osmocore/tlv.h> +#include <osmocom/gsm/tlv.h>
/* generic header in front of every OML message according to TS 08.59 */ struct abis_om_hdr { diff --git a/include/osmocore/rsl.h b/include/osmocom/gsm/rsl.h similarity index 94% rename from include/osmocore/rsl.h rename to include/osmocom/gsm/rsl.h index 54d6703..7e46330 100644 --- a/include/osmocore/rsl.h +++ b/include/osmocom/gsm/rsl.h @@ -2,8 +2,8 @@ #define _OSMOCORE_RSL_H
#include <stdint.h> -#include <osmocore/utils.h> -#include <osmocore/protocol/gsm_08_58.h> +#include <osmocom/core/utils.h> +#include <osmocom/gsm/protocol/gsm_08_58.h>
void rsl_init_rll_hdr(struct abis_rsl_rll_hdr *dh, uint8_t msg_type);
diff --git a/include/osmocore/rxlev_stat.h b/include/osmocom/gsm/rxlev_stat.h similarity index 100% rename from include/osmocore/rxlev_stat.h rename to include/osmocom/gsm/rxlev_stat.h diff --git a/include/osmocore/tlv.h b/include/osmocom/gsm/tlv.h similarity index 99% rename from include/osmocore/tlv.h rename to include/osmocom/gsm/tlv.h index 7bda9f9..552af2b 100644 --- a/include/osmocore/tlv.h +++ b/include/osmocom/gsm/tlv.h @@ -4,7 +4,7 @@ #include <stdint.h> #include <string.h>
-#include <osmocore/msgb.h> +#include <osmocom/core/msgb.h>
/* Terminology / wording tag length value (in bits) diff --git a/include/osmocom/vty/telnet_interface.h b/include/osmocom/vty/telnet_interface.h index 444e649..0c034e4 100644 --- a/include/osmocom/vty/telnet_interface.h +++ b/include/osmocom/vty/telnet_interface.h @@ -21,8 +21,8 @@ #ifndef TELNET_INTERFACE_H #define TELNET_INTERFACE_H
-#include <osmocore/logging.h> -#include <osmocore/select.h> +#include <osmocom/core/logging.h> +#include <osmocom/core/select.h>
#include <osmocom/vty/vty.h>
diff --git a/include/osmocore/Makefile.am b/include/osmocore/Makefile.am deleted file mode 100644 index b65589a..0000000 --- a/include/osmocore/Makefile.am +++ /dev/null @@ -1,14 +0,0 @@ -osmocore_HEADERS = signal.h linuxlist.h timer.h select.h msgb.h bits.h \ - tlv.h bitvec.h comp128.h statistics.h gsm_utils.h utils.h \ - gsmtap.h write_queue.h rsl.h gsm48.h rxlev_stat.h mncc.h \ - gsm48_ie.h logging.h gsm0808.h rate_ctr.h gsmtap_util.h \ - plugin.h crc16.h panic.h process.h gsm0480.h msgfile.h \ - backtrace.h - -if ENABLE_TALLOC -osmocore_HEADERS += talloc.h -endif - -osmocoredir = $(includedir)/osmocore - -SUBDIRS = protocol diff --git a/include/osmocore/protocol/Makefile.am b/include/osmocore/protocol/Makefile.am deleted file mode 100644 index 03a4849..0000000 --- a/include/osmocore/protocol/Makefile.am +++ /dev/null @@ -1,6 +0,0 @@ -osmocore_proto_HEADERS = gsm_03_41.h \ - gsm_04_08.h gsm_04_11.h gsm_04_12.h gsm_04_80.h \ - gsm_08_08.h gsm_08_58.h \ - gsm_12_21.h - -osmocore_protodir = $(includedir)/osmocore/protocol diff --git a/src/backtrace.c b/src/backtrace.c index 4239445..ecd6b9c 100644 --- a/src/backtrace.c +++ b/src/backtrace.c @@ -24,7 +24,7 @@
#include <stdio.h> #include <stdlib.h> -#include <osmocore/utils.h> +#include <osmocom/core/utils.h> #include "config.h"
#ifdef HAVE_EXECINFO_H diff --git a/src/bits.c b/src/bits.c index fcdf5cc..ff5d176 100644 --- a/src/bits.c +++ b/src/bits.c @@ -1,7 +1,7 @@
#include <stdint.h>
-#include <osmocore/bits.h> +#include <osmocom/core/bits.h>
/* convert unpacked bits to packed bits, return length in bytes */ int osmo_ubit2pbit(pbit_t *out, const ubit_t *in, unsigned int num_bits) diff --git a/src/bitvec.c b/src/bitvec.c index 95d78a5..4984af2 100644 --- a/src/bitvec.c +++ b/src/bitvec.c @@ -24,7 +24,7 @@ #include <errno.h> #include <stdint.h>
-#include <osmocore/bitvec.h> +#include <osmocom/core/bitvec.h>
#define BITNUM_FROM_COMP(byte, bit) ((byte*8)+bit)
diff --git a/src/crc16.c b/src/crc16.c index 8ac8031..3a0d0dd 100644 --- a/src/crc16.c +++ b/src/crc16.c @@ -8,7 +8,7 @@ * Version 2. See the file COPYING for more details. */
-#include <osmocore/crc16.h> +#include <osmocom/core/crc16.h>
/** CRC table for the CRC-16. The poly is 0x8005 (x^16 + x^15 + x^2 + 1) */ uint16_t const crc16_table[256] = { diff --git a/src/gsm/gprs_cipher_core.c b/src/gsm/gprs_cipher_core.c index 6174bd7..0ff85e2 100644 --- a/src/gsm/gprs_cipher_core.c +++ b/src/gsm/gprs_cipher_core.c @@ -23,9 +23,9 @@ #include <errno.h> #include <stdint.h>
-#include <osmocore/utils.h> -#include <osmocore/linuxlist.h> -#include <osmocore/plugin.h> +#include <osmocom/core/utils.h> +#include <osmocom/core/linuxlist.h> +#include <osmocom/core/plugin.h>
#include <osmocom/crypt/gprs_cipher.h>
diff --git a/src/gsm/gsm0480.c b/src/gsm/gsm0480.c index b6b345c..b9b3ed9 100644 --- a/src/gsm/gsm0480.c +++ b/src/gsm/gsm0480.c @@ -22,13 +22,13 @@ * */
-#include <osmocore/gsm0480.h> -#include <osmocore/gsm_utils.h> +#include <osmocom/gsm/gsm0480.h> +#include <osmocom/gsm/gsm_utils.h>
-#include <osmocore/logging.h> +#include <osmocom/core/logging.h>
-#include <osmocore/protocol/gsm_04_08.h> -#include <osmocore/protocol/gsm_04_80.h> +#include <osmocom/gsm/protocol/gsm_04_08.h> +#include <osmocom/gsm/protocol/gsm_04_80.h>
#include <string.h>
diff --git a/src/gsm/gsm0808.c b/src/gsm/gsm0808.c index dc450cc..1640adc 100644 --- a/src/gsm/gsm0808.c +++ b/src/gsm/gsm0808.c @@ -18,9 +18,9 @@ * */
-#include <osmocore/gsm0808.h> -#include <osmocore/protocol/gsm_08_08.h> -#include <osmocore/gsm48.h> +#include <osmocom/gsm/gsm0808.h> +#include <osmocom/gsm/protocol/gsm_08_08.h> +#include <osmocom/gsm/gsm48.h>
#include <arpa/inet.h>
diff --git a/src/gsm/gsm48.c b/src/gsm/gsm48.c index daec4f3..436bf14 100644 --- a/src/gsm/gsm48.c +++ b/src/gsm/gsm48.c @@ -28,11 +28,11 @@
#include <arpa/inet.h>
-#include <osmocore/utils.h> -#include <osmocore/tlv.h> -#include <osmocore/gsm48.h> +#include <osmocom/core/utils.h> +#include <osmocom/gsm/tlv.h> +#include <osmocom/gsm/gsm48.h>
-#include <osmocore/protocol/gsm_04_08.h> +#include <osmocom/gsm/protocol/gsm_04_08.h>
const struct tlv_definition gsm48_att_tlvdef = { .def = { diff --git a/src/gsm/gsm48_ie.c b/src/gsm/gsm48_ie.c index 0e27088..efcf281 100644 --- a/src/gsm/gsm48_ie.c +++ b/src/gsm/gsm48_ie.c @@ -27,12 +27,12 @@ #include <string.h> #include <errno.h>
-#include <osmocore/utils.h> -#include <osmocore/msgb.h> -#include <osmocore/tlv.h> -#include <osmocore/mncc.h> -#include <osmocore/protocol/gsm_04_08.h> -#include <osmocore/gsm48_ie.h> +#include <osmocom/core/utils.h> +#include <osmocom/core/msgb.h> +#include <osmocom/gsm/tlv.h> +#include <osmocom/gsm/mncc.h> +#include <osmocom/gsm/protocol/gsm_04_08.h> +#include <osmocom/gsm/gsm48_ie.h>
static const char bcd_num_digits[] = { '0', '1', '2', '3', '4', '5', '6', '7', diff --git a/src/gsm/gsm_utils.c b/src/gsm/gsm_utils.c index 54a13ad..377705d 100644 --- a/src/gsm/gsm_utils.c +++ b/src/gsm/gsm_utils.c @@ -23,8 +23,8 @@ */
//#include <openbsc/gsm_data.h> -#include <osmocore/utils.h> -#include <osmocore/gsm_utils.h> +#include <osmocom/core/utils.h> +#include <osmocom/gsm/gsm_utils.h>
#include <stdlib.h> #include <stdint.h> @@ -33,7 +33,7 @@ #include <errno.h> #include <ctype.h>
-#include "../config.h" +#include "../../config.h"
/* ETSI GSM 03.38 6.2.1 and 6.2.1.1 default alphabet * Greek symbols at hex positions 0x10 and 0x12-0x1a diff --git a/src/gsm/rsl.c b/src/gsm/rsl.c index 3bfeffb..12ac0cf 100644 --- a/src/gsm/rsl.c +++ b/src/gsm/rsl.c @@ -25,8 +25,8 @@ #include <stdio.h> #include <errno.h>
-#include <osmocore/tlv.h> -#include <osmocore/rsl.h> +#include <osmocom/gsm/tlv.h> +#include <osmocom/gsm/rsl.h>
#define RSL_ALLOC_SIZE 200 #define RSL_ALLOC_HEADROOM 56 diff --git a/src/gsm/rxlev_stat.c b/src/gsm/rxlev_stat.c index b474aaa..626aaff 100644 --- a/src/gsm/rxlev_stat.c +++ b/src/gsm/rxlev_stat.c @@ -27,8 +27,8 @@ #include <errno.h> #include <stdint.h>
-#include <osmocore/bitvec.h> -#include <osmocore/rxlev_stat.h> +#include <osmocom/core/bitvec.h> +#include <osmocom/gsm/rxlev_stat.h>
int bitvec_find_bit_pos(const struct bitvec *bv, unsigned int n, enum bit_value val) { diff --git a/src/gsm/tlv_parser.c b/src/gsm/tlv_parser.c index bbef7a9..1e4c6b5 100644 --- a/src/gsm/tlv_parser.c +++ b/src/gsm/tlv_parser.c @@ -1,7 +1,7 @@ #include <stdio.h> #include <stdint.h> -#include <osmocore/utils.h> -#include <osmocore/tlv.h> +#include <osmocom/core/utils.h> +#include <osmocom/gsm/tlv.h>
struct tlv_definition tvlv_att_def;
diff --git a/src/gsmtap_util.c b/src/gsmtap_util.c index abee4da..6d02d58 100644 --- a/src/gsmtap_util.c +++ b/src/gsmtap_util.c @@ -24,13 +24,13 @@
#ifdef HAVE_SYS_SELECT_H
-#include <osmocore/gsmtap_util.h> -#include <osmocore/logging.h> -#include <osmocore/protocol/gsm_04_08.h> -#include <osmocore/gsmtap.h> -#include <osmocore/msgb.h> -#include <osmocore/rsl.h> -#include <osmocore/select.h> +#include <osmocom/core/gsmtap_util.h> +#include <osmocom/core/logging.h> +#include <osmocom/core/gsmtap.h> +#include <osmocom/core/msgb.h> +#include <osmocom/core/select.h> +#include <osmocom/gsm/protocol/gsm_04_08.h> +#include <osmocom/gsm/rsl.h>
#include <arpa/inet.h> #include <sys/socket.h> diff --git a/src/logging.c b/src/logging.c index 876a352..9b98bc0 100644 --- a/src/logging.c +++ b/src/logging.c @@ -33,9 +33,9 @@ #include <time.h> #include <errno.h>
-#include <osmocore/talloc.h> -#include <osmocore/utils.h> -#include <osmocore/logging.h> +#include <osmocom/core/talloc.h> +#include <osmocom/core/utils.h> +#include <osmocom/core/logging.h>
const struct log_info *osmo_log_info;
diff --git a/src/logging_syslog.c b/src/logging_syslog.c index b558fc0..4f043b1 100644 --- a/src/logging_syslog.c +++ b/src/logging_syslog.c @@ -33,9 +33,9 @@ #include <strings.h> #endif
-#include <osmocore/talloc.h> -#include <osmocore/utils.h> -#include <osmocore/logging.h> +#include <osmocom/core/talloc.h> +#include <osmocom/core/utils.h> +#include <osmocom/core/logging.h>
static const int logp2syslog_level(unsigned int level) { diff --git a/src/msgb.c b/src/msgb.c index 12a839a..8672006 100644 --- a/src/msgb.c +++ b/src/msgb.c @@ -24,9 +24,9 @@ #include <stdlib.h> #include <sys/types.h>
-#include <osmocore/msgb.h> +#include <osmocom/core/msgb.h> //#include <openbsc/gsm_data.h> -#include <osmocore/talloc.h> +#include <osmocom/core/talloc.h> //#include <openbsc/debug.h>
void *tall_msgb_ctx; diff --git a/src/msgfile.c b/src/msgfile.c index 68f0581..ec4434a 100644 --- a/src/msgfile.c +++ b/src/msgfile.c @@ -21,8 +21,8 @@ * */
-#include <osmocore/msgfile.h> -#include <osmocore/talloc.h> +#include <osmocom/core/msgfile.h> +#include <osmocom/core/talloc.h>
#include <sys/types.h> #include <sys/stat.h> diff --git a/src/panic.c b/src/panic.c index 21e8fd5..588a5fe 100644 --- a/src/panic.c +++ b/src/panic.c @@ -20,9 +20,9 @@ * */
-#include <osmocore/gsm_utils.h> -#include <osmocore/panic.h> -#include <osmocore/backtrace.h> +#include <osmocom/gsm/gsm_utils.h> +#include <osmocom/core/panic.h> +#include <osmocom/core/backtrace.h>
#include "../config.h"
diff --git a/src/plugin.c b/src/plugin.c index 3ba2d43..4924e95 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -31,7 +31,7 @@ #include <errno.h> #include <limits.h>
-#include <osmocore/plugin.h> +#include <osmocom/core/plugin.h>
int plugin_load_all(const char *directory) { diff --git a/src/rate_ctr.c b/src/rate_ctr.c index 80ef55b..dd56e80 100644 --- a/src/rate_ctr.c +++ b/src/rate_ctr.c @@ -23,11 +23,11 @@ #include <stdint.h> #include <string.h>
-#include <osmocore/utils.h> -#include <osmocore/linuxlist.h> -#include <osmocore/talloc.h> -#include <osmocore/timer.h> -#include <osmocore/rate_ctr.h> +#include <osmocom/core/utils.h> +#include <osmocom/core/linuxlist.h> +#include <osmocom/core/talloc.h> +#include <osmocom/core/timer.h> +#include <osmocom/core/rate_ctr.h>
static LLIST_HEAD(rate_ctr_groups);
diff --git a/src/select.c b/src/select.c index 5aa2beb..adf3619 100644 --- a/src/select.c +++ b/src/select.c @@ -22,9 +22,9 @@ #include <fcntl.h> #include <stdio.h>
-#include <osmocore/select.h> -#include <osmocore/linuxlist.h> -#include <osmocore/timer.h> +#include <osmocom/core/select.h> +#include <osmocom/core/linuxlist.h> +#include <osmocom/core/timer.h>
#include "../config.h"
diff --git a/src/signal.c b/src/signal.c index c7ca86c..bb5c38e 100644 --- a/src/signal.c +++ b/src/signal.c @@ -18,9 +18,9 @@ * */
-#include <osmocore/signal.h> -#include <osmocore/talloc.h> -#include <osmocore/linuxlist.h> +#include <osmocom/core/signal.h> +#include <osmocom/core/talloc.h> +#include <osmocom/core/linuxlist.h> #include <stdlib.h> #include <string.h> #include <errno.h> diff --git a/src/statistics.c b/src/statistics.c index 34e6a40..183005d 100644 --- a/src/statistics.c +++ b/src/statistics.c @@ -23,9 +23,9 @@
#include <sys/types.h>
-#include <osmocore/linuxlist.h> -#include <osmocore/talloc.h> -#include <osmocore/statistics.h> +#include <osmocom/core/linuxlist.h> +#include <osmocom/core/talloc.h> +#include <osmocom/core/statistics.h>
static LLIST_HEAD(counters);
diff --git a/src/talloc.c b/src/talloc.c index 98c2ee0..60d7927 100644 --- a/src/talloc.c +++ b/src/talloc.c @@ -55,7 +55,7 @@ #define __USE_GNU #include <string.h> #undef __USE_GNU -#include <osmocore/talloc.h> +#include <osmocom/core/talloc.h> #define MIN(x,y) ((x) < (y) ? (x) : (y)) #endif /* not _TALLOC_SAMBA3 */
diff --git a/src/timer.c b/src/timer.c index 37d7d16..9b2dd9e 100644 --- a/src/timer.c +++ b/src/timer.c @@ -20,7 +20,7 @@
#include <assert.h> #include <string.h> -#include <osmocore/timer.h> +#include <osmocom/core/timer.h>
static LLIST_HEAD(timer_list); static struct timeval s_nearest_time; diff --git a/src/utils.c b/src/utils.c index 354fce5..af1829c 100644 --- a/src/utils.c +++ b/src/utils.c @@ -4,7 +4,7 @@ #include <errno.h> #include <stdio.h>
-#include <osmocore/utils.h> +#include <osmocom/core/utils.h>
static char namebuf[255]; const char *get_value_string(const struct value_string *vs, uint32_t val) diff --git a/src/vty/buffer.c b/src/vty/buffer.c index a5655b9..e385f9f 100644 --- a/src/vty/buffer.c +++ b/src/vty/buffer.c @@ -28,7 +28,7 @@ #include <stddef.h> #include <sys/uio.h>
-#include <osmocore/talloc.h> +#include <osmocom/core/talloc.h> #include <osmocom/vty/buffer.h> #include <osmocom/vty/vty.h>
diff --git a/src/vty/command.c b/src/vty/command.c index 0f65224..5dc1dd4 100644 --- a/src/vty/command.c +++ b/src/vty/command.c @@ -38,7 +38,7 @@ Boston, MA 02111-1307, USA. */ #include <osmocom/vty/vty.h> #include <osmocom/vty/command.h>
-#include <osmocore/talloc.h> +#include <osmocom/core/talloc.h>
#define CONFIGFILE_MASK 022
diff --git a/src/vty/logging_vty.c b/src/vty/logging_vty.c index 904f8fe..08b98bd 100644 --- a/src/vty/logging_vty.c +++ b/src/vty/logging_vty.c @@ -24,9 +24,9 @@
#include "../../config.h"
-#include <osmocore/talloc.h> -#include <osmocore/logging.h> -#include <osmocore/utils.h> +#include <osmocom/core/talloc.h> +#include <osmocom/core/logging.h> +#include <osmocom/core/utils.h>
//#include <openbsc/vty.h>
diff --git a/src/vty/telnet_interface.c b/src/vty/telnet_interface.c index 098fa2e..0d45d61 100644 --- a/src/vty/telnet_interface.c +++ b/src/vty/telnet_interface.c @@ -25,9 +25,9 @@ #include <string.h> #include <unistd.h>
-#include <osmocore/msgb.h> -#include <osmocore/talloc.h> -#include <osmocore/logging.h> +#include <osmocom/core/msgb.h> +#include <osmocom/core/talloc.h> +#include <osmocom/core/logging.h>
#include <osmocom/vty/telnet_interface.h> #include <osmocom/vty/buffer.h> diff --git a/src/vty/utils.c b/src/vty/utils.c index e163526..7797e62 100644 --- a/src/vty/utils.c +++ b/src/vty/utils.c @@ -23,10 +23,10 @@ #include <stdint.h> #include <inttypes.h>
-#include <osmocore/linuxlist.h> -#include <osmocore/talloc.h> -#include <osmocore/timer.h> -#include <osmocore/rate_ctr.h> +#include <osmocom/core/linuxlist.h> +#include <osmocom/core/talloc.h> +#include <osmocom/core/timer.h> +#include <osmocom/core/rate_ctr.h>
#include <osmocom/vty/vty.h>
diff --git a/src/vty/vector.c b/src/vty/vector.c index 0343163..4012f24 100644 --- a/src/vty/vector.c +++ b/src/vty/vector.c @@ -24,7 +24,7 @@
#include <osmocom/vty/vector.h> #include <osmocom/vty/vty.h> -#include <osmocore/talloc.h> +#include <osmocom/core/talloc.h> #include <memory.h>
void *tall_vty_vec_ctx; diff --git a/src/vty/vty.c b/src/vty/vty.c index c1a9b3a..a1f0304 100644 --- a/src/vty/vty.c +++ b/src/vty/vty.c @@ -16,7 +16,7 @@ #include <osmocom/vty/vty.h> #include <osmocom/vty/command.h> #include <osmocom/vty/buffer.h> -#include <osmocore/talloc.h> +#include <osmocom/core/talloc.h>
#define SYSCONFDIR "/usr/local/etc"
diff --git a/src/write_queue.c b/src/write_queue.c index 7295569..0642aad 100644 --- a/src/write_queue.c +++ b/src/write_queue.c @@ -21,7 +21,7 @@ * */
-#include <osmocore/write_queue.h> +#include <osmocom/core/write_queue.h>
int write_queue_bfd_cb(struct bsc_fd *fd, unsigned int what) { diff --git a/tests/msgfile/msgfile_test.c b/tests/msgfile/msgfile_test.c index a82ac51..4637cea 100644 --- a/tests/msgfile/msgfile_test.c +++ b/tests/msgfile/msgfile_test.c @@ -19,7 +19,7 @@ * */
-#include <osmocore/msgfile.h> +#include <osmocom/core/msgfile.h>
#include <stdio.h>
diff --git a/tests/sms/sms_test.c b/tests/sms/sms_test.c index 9d87b5b..f5d82b9 100644 --- a/tests/sms/sms_test.c +++ b/tests/sms/sms_test.c @@ -23,9 +23,9 @@ #include <stdlib.h> #include <string.h> #include <sys/types.h> -#include <osmocore/msgb.h> -#include <osmocore/gsm_utils.h> -#include <osmocore/utils.h> +#include <osmocom/core/msgb.h> +#include <osmocom/gsm/gsm_utils.h> +#include <osmocom/core/utils.h>
struct test_case { const uint8_t *input; diff --git a/tests/smscb/smscb_test.c b/tests/smscb/smscb_test.c index 627d5a1..e10e12d 100644 --- a/tests/smscb/smscb_test.c +++ b/tests/smscb/smscb_test.c @@ -18,7 +18,7 @@ * */
-#include <osmocore/protocol/gsm_03_41.h> +#include <osmocom/gsm/protocol/gsm_03_41.h>
#include <stdio.h>
diff --git a/tests/timer/timer_test.c b/tests/timer/timer_test.c index 1b458d8..30b08ad 100644 --- a/tests/timer/timer_test.c +++ b/tests/timer/timer_test.c @@ -20,8 +20,8 @@
#include <stdio.h>
-#include <osmocore/timer.h> -#include <osmocore/select.h> +#include <osmocom/core/timer.h> +#include <osmocom/core/select.h>
#include "../../config.h"
diff --git a/tests/ussd/ussd_test.c b/tests/ussd/ussd_test.c index bddbbcb..6d2a8c9 100644 --- a/tests/ussd/ussd_test.c +++ b/tests/ussd/ussd_test.c @@ -19,7 +19,7 @@ * */
-#include <osmocore/gsm0480.h> +#include <osmocom/gsm/gsm0480.h> #include <stdio.h> #include <stdlib.h> #include <string.h>
Pablo,
On Tue, Mar 22, 2011 at 04:36:11PM +0100, pablo@gnumonks.org wrote:
- The creation of the libosmogsm library which is distributed in
libosmocore.
- The new GSM-specific header directory under include/osmocom/gsm.
- The new core header directory under include/osmocom/core.
thanks a lot for your patches. As Holger is travelling right now back from Taiwan, I would like to wait for 1-2 more days to get his review before we apply such an invasive change.
I'm fine with it, though I somehow think the "osmocom/gsm/protocol/gsm_04_08.h" is getting a _bit_ long. But well, it's a logical structure...
On 03/23/2011 10:37 AM, Harald Welte wrote:
Pablo,
thanks a lot for your patches. As Holger is travelling right now back from Taiwan, I would like to wait for 1-2 more days to get his review before we apply such an invasive change.
Hi all,
I am at the airport right now. I do not have any problems with the general approach and would not mind fixing fall outs afterwards.
regards holger
On Tue, Mar 22, 2011 at 04:36:11PM +0100, pablo@gnumonks.org wrote:
From: Pablo Neira Ayuso pablo@gnumonks.org
This is the second version of this patchset, which includes:
- The creation of the libosmogsm library which is distributed in
libosmocore.
- The new GSM-specific header directory under include/osmocom/gsm.
- The new core header directory under include/osmocom/core.
Thanks, this has now been applied. Hoewever, it was not working against the latest git tree, so I had to find your original base and do a rebase.
Further fall-out: libosmo-sccp include paths had to be updated, and bsc-nat as well as gprs parts of openbsc.git failed to build due to some missing header changes.
At least libosmocore.git / libosmo-sccp.git / openbsc.git should be fine now.
Regards, Harald
On 23/03/11 18:35, Harald Welte wrote:
On Tue, Mar 22, 2011 at 04:36:11PM +0100, pablo@gnumonks.org wrote:
From: Pablo Neira Ayuso pablo@gnumonks.org
This is the second version of this patchset, which includes:
- The creation of the libosmogsm library which is distributed in
libosmocore.
- The new GSM-specific header directory under include/osmocom/gsm.
- The new core header directory under include/osmocom/core.
Thanks, this has now been applied. Hoewever, it was not working against the latest git tree, so I had to find your original base and do a rebase.
it seems I forgot to pull before working on the patches :-(
Further fall-out: libosmo-sccp include paths had to be updated, and bsc-nat as well as gprs parts of openbsc.git failed to build due to some missing header changes.
Sorry, I forgot to add --enable-nat=yes and to have installed libgtp. I'll include this in the future to test my patches.
At least libosmocore.git / libosmo-sccp.git / openbsc.git should be fine now.
Thanks!