osmocom-bb.git
13 years agoAdded single octet TV (type + value) to libosmocore.
Andreas Eversberg [Mon, 12 Jul 2010 06:55:14 +0000 (08:55 +0200)]
Added single octet TV (type + value) to libosmocore.

In case of a single octet, the upper nibble is the type, the lower nibble
carries the value.

[import from accidentially committed changes to osmocom-bb.git]
diff --git a/src/shared/libosmocore/include/osmocore/tlv.h b/src/shared/libosmocore/include/osmocore/tlv.h
index c733dbc..4cfce87 100644
--- a/src/shared/libosmocore/include/osmocore/tlv.h
+++ b/src/shared/libosmocore/include/osmocore/tlv.h
@@ -212,6 +212,7 @@ enum tlv_type {
  TLV_TYPE_TLV,
  TLV_TYPE_TL16V,
  TLV_TYPE_TvLV,
+ TLV_TYPE_SINGLE_TV
 };

 struct tlv_def {
diff --git a/src/shared/libosmocore/src/tlv_parser.c b/src/shared/libosmocore/src/tlv_parser.c
index 407e57a..bbef7a9 100644
--- a/src/shared/libosmocore/src/tlv_parser.c
+++ b/src/shared/libosmocore/src/tlv_parser.c
@@ -36,6 +36,14 @@ int tlv_parse_one(uint8_t *o_tag, uint16_t *o_len, const uint8_t **o_val,
  tag = *buf;
  *o_tag = tag;

+ /* single octet TV IE */
+ if (def->def[tag & 0xf0].type == TLV_TYPE_SINGLE_TV) {
+ *o_tag = tag & 0xf0;
+ *o_val = buf;
+ *o_len = 1;
+ return 1;
+ }
+
  /* FIXME: use tables for knwon IEI */
  switch (def->def[tag].type) {
  case TLV_TYPE_T:

13 years agogsm_utils: Fix typo in gsm band name
Sylvain Munaut [Sun, 4 Jul 2010 09:41:36 +0000 (11:41 +0200)]
gsm_utils: Fix typo in gsm band name

thanks to horizon for noticing :p

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
13 years agoGPRS: Add 'input' generator functions for GPRS cipher algorithm
Harald Welte [Wed, 30 Jun 2010 17:50:14 +0000 (19:50 +0200)]
GPRS: Add 'input' generator functions for GPRS cipher algorithm

13 years agoAdd support for plugins (and specifically GPRS encryption plugins)
Harald Welte [Wed, 30 Jun 2010 17:43:11 +0000 (19:43 +0200)]
Add support for plugins (and specifically GPRS encryption plugins)

13 years ago[gsmtap] add new gsmtap_makemsg() function
Harald Welte [Tue, 29 Jun 2010 20:31:21 +0000 (22:31 +0200)]
[gsmtap] add new gsmtap_makemsg() function

This generates a gsmtap message without actually enqueueing to a
bsc_select style queue.

13 years agoAdd gsmtap utility functions to libosmocore
Harald Welte [Tue, 29 Jun 2010 18:51:13 +0000 (20:51 +0200)]
Add gsmtap utility functions to libosmocore

This is imported from OsmocomBB/Layer23

13 years agoFix typo in configure script regarding --disable-vty
Harald Welte [Fri, 25 Jun 2010 01:00:58 +0000 (03:00 +0200)]
Fix typo in configure script regarding --disable-vty

13 years ago[RSL] Added special RSL message types for mobile side
Andreas Eversberg [Fri, 25 Jun 2010 00:50:56 +0000 (02:50 +0200)]
[RSL] Added special RSL message types for mobile side

    - suspension DL
    - resume DL
    - re-establish DL

13 years ago[gsm48] fix typo in struct gsm48_req_ref
Andreas Eversberg [Fri, 25 Jun 2010 00:50:06 +0000 (02:50 +0200)]
[gsm48] fix typo in struct gsm48_req_ref

13 years ago[GSM 04.08] add more RR IEIs
Harald Welte [Tue, 15 Jun 2010 07:32:14 +0000 (09:32 +0200)]
[GSM 04.08] add more RR IEIs

13 years agogsm48: Add authentication response message
Sylvain Munaut [Thu, 10 Jun 2010 11:30:50 +0000 (13:30 +0200)]
gsm48: Add authentication response message

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
13 years agogsm_utils: Add a fn to test A5(x) support given a classmark2
Sylvain Munaut [Wed, 9 Jun 2010 11:38:56 +0000 (13:38 +0200)]
gsm_utils: Add a fn to test A5(x) support given a classmark2

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
13 years agovty: Mark app info strings as const char*.
Holger Hans Peter Freyther [Tue, 8 Jun 2010 08:12:58 +0000 (16:12 +0800)]
vty: Mark app info strings as const char*.

13 years agoMerge remote branch 'origin/master'
Harald Welte [Tue, 1 Jun 2010 19:21:20 +0000 (21:21 +0200)]
Merge remote branch 'origin/master'

13 years agoadd new new gprs_tmsi2tlli() function
Harald Welte [Tue, 1 Jun 2010 08:47:07 +0000 (10:47 +0200)]
add new new gprs_tmsi2tlli() function

13 years ago[VTY] Remove all application specific VTY node definitions from enum
Harald Welte [Mon, 31 May 2010 14:01:59 +0000 (16:01 +0200)]
[VTY] Remove all application specific VTY node definitions from enum

13 years agoadd configure option '--disable-vty' to prevent building libosmovty
Harald Welte [Sat, 29 May 2010 09:49:51 +0000 (11:49 +0200)]
add configure option '--disable-vty' to prevent building libosmovty

13 years ago[VTY] Introduce "struct vty_app_info" for vty_init() function
Harald Welte [Tue, 25 May 2010 21:00:45 +0000 (23:00 +0200)]
[VTY] Introduce "struct vty_app_info" for vty_init() function

13 years agorename log_info to osmo_log_info to avoid namespace clash with app
Harald Welte [Wed, 19 May 2010 17:54:00 +0000 (19:54 +0200)]
rename log_info to osmo_log_info to avoid namespace clash with app

13 years agofix typo resultin in dist/distcheck problem
Harald Welte [Wed, 19 May 2010 17:44:57 +0000 (19:44 +0200)]
fix typo resultin in dist/distcheck problem

13 years agoAdd pkgconfig for libosmovty
Harald Welte [Wed, 19 May 2010 17:42:32 +0000 (19:42 +0200)]
Add pkgconfig for libosmovty

13 years agomake sure we actually install the vty headers
Harald Welte [Wed, 19 May 2010 17:25:40 +0000 (19:25 +0200)]
make sure we actually install the vty headers

13 years agoCreate libosmovty as library from OpenBSC VTY functions
Harald Welte [Wed, 19 May 2010 17:02:52 +0000 (19:02 +0200)]
Create libosmovty as library from OpenBSC VTY functions

13 years agorate_ctr: Make the struct rate_ctr_group_desc members const
Holger Hans Peter Freyther [Sun, 23 May 2010 13:14:32 +0000 (21:14 +0800)]
rate_ctr: Make the struct rate_ctr_group_desc members const

14 years agoAdded some "get"-functions to bitvec of libosmocore.
Andreas.Eversberg [Sun, 9 May 2010 09:36:54 +0000 (09:36 +0000)]
Added some "get"-functions to bitvec of libosmocore.

- Getting Low or High value from current postion
- Getting unsigned interger from current postion

14 years agogsm0808: Add API to wrap a GSM48 msg with a BSSMAP/DTAP msg.
Holger Hans Peter Freyther [Sun, 16 May 2010 00:15:40 +0000 (08:15 +0800)]
gsm0808: Add API to wrap a GSM48 msg with a BSSMAP/DTAP msg.

14 years agogsm48: Add paging response header
Holger Hans Peter Freyther [Sat, 15 May 2010 14:35:25 +0000 (22:35 +0800)]
gsm48: Add paging response header

14 years agogsm0808: Add TLV entries for types used by the Compl Layer3 Information
Holger Hans Peter Freyther [Thu, 13 May 2010 23:25:01 +0000 (07:25 +0800)]
gsm0808: Add TLV entries for types used by the Compl Layer3 Information

14 years ago[rate_ctr] always 'overflow' in next larger inetrval when interval ends
Harald Welte [Thu, 13 May 2010 11:28:12 +0000 (13:28 +0200)]
[rate_ctr] always 'overflow' in next larger inetrval when interval ends

If a second ends, we add the number of events in that just-ended second
to the number of events in the currently running minute.  The same happens
at the end of a minute: We add the number of events in that just-ended
minute into the number of events of the still-running hour, etc.

This gives a much more meaningful numbers and we don't end up with
"12 events per second, but 0 events per minute" kind of situations
anymore.

14 years ago[rate_ctr] Rename group_prefix_fmt to group_name_prefix
Harald Welte [Thu, 13 May 2010 10:53:35 +0000 (12:53 +0200)]
[rate_ctr] Rename group_prefix_fmt to group_name_prefix

14 years agorate_counters: Remove group-name-sprintf-with-idx string
Harald Welte [Thu, 13 May 2010 10:50:44 +0000 (12:50 +0200)]
rate_counters: Remove group-name-sprintf-with-idx string

14 years agorate_ctr: Store the numeric index as part of 'rate_ctr_group'
Harald Welte [Thu, 13 May 2010 10:16:17 +0000 (12:16 +0200)]
rate_ctr: Store the numeric index as part of 'rate_ctr_group'

14 years agoAdd new 'rate counter' implementation to libosmocore
Harald Welte [Thu, 13 May 2010 09:35:30 +0000 (11:35 +0200)]
Add new 'rate counter' implementation to libosmocore

A 'rate counter' is a counter that counts events but also keeps
track of the rate of events (per second, minute, hour and day).

'rate counters' are generally abstracted in 'rate counter groups',
which are instances of a 'rate counter group description'.  This
way we can have e.g. a description describing what kind of counters
a BTS (or TRX) has - and we can then create one instance of that
group for every BTS or TRX that exists.

14 years agologging: add log_vty_{level,category}_string()
Harald Welte [Tue, 11 May 2010 14:39:22 +0000 (16:39 +0200)]
logging: add log_vty_{level,category}_string()

14 years agologging: introuduce log_level_str() to obtain the name of a log level
Harald Welte [Tue, 11 May 2010 09:19:40 +0000 (11:19 +0200)]
logging: introuduce log_level_str() to obtain the name of a log level

14 years agomsgb: initialize cb[] to zero during msgb_reset()
Harald Welte [Sat, 1 May 2010 21:53:26 +0000 (23:53 +0200)]
msgb: initialize cb[] to zero during msgb_reset()

14 years agoImport gsm48_construct_ra() from openbsc
Harald Welte [Sat, 1 May 2010 12:25:22 +0000 (14:25 +0200)]
Import gsm48_construct_ra() from openbsc

14 years agogsm48.h: Prevent accidental re-inclusion of same header file
Harald Welte [Sat, 1 May 2010 10:06:48 +0000 (12:06 +0200)]
gsm48.h: Prevent accidental re-inclusion of same header file

14 years agoimport gsm48_parse_ra() and gprs_tlli_type() from openbsc
Harald Welte [Sat, 1 May 2010 09:59:42 +0000 (11:59 +0200)]
import gsm48_parse_ra() and gprs_tlli_type() from openbsc

14 years agoAdd missing file.
Holger Hans Peter Freyther [Sat, 1 May 2010 07:09:48 +0000 (15:09 +0800)]
Add missing file.

14 years agomsgb: introduce msgb->cb (the control buffer)
Harald Welte [Fri, 30 Apr 2010 12:29:11 +0000 (14:29 +0200)]
msgb: introduce msgb->cb (the control buffer)

14 years agomsgb: remove smsh, llch, tlli and gmmh
Harald Welte [Fri, 30 Apr 2010 12:26:12 +0000 (14:26 +0200)]
msgb: remove smsh, llch, tlli and gmmh

This is a lot of GSM/GPRS specific stuff in struct msgb which we want
to avoid.  The 'control buffer' will replace them.

14 years agoremove the unneeded bts_link pointer from msgb
Harald Welte [Fri, 30 Apr 2010 12:19:48 +0000 (14:19 +0200)]
remove the unneeded bts_link pointer from msgb

14 years agoUpdate .gitignore
Sylvain Munaut [Wed, 28 Apr 2010 08:10:47 +0000 (10:10 +0200)]
Update .gitignore

m4/*.m4 -> autoreconf adds stuff there
tests   -> Build product

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
14 years agogsm 08.08: Fix some u_int8_t -> uint8_t
Sylvain Munaut [Wed, 28 Apr 2010 08:05:29 +0000 (10:05 +0200)]
gsm 08.08: Fix some u_int8_t -> uint8_t

This breaks the ARM build in osmocom-bb. Besides uint??_t seems to
be the preferred type in osmocore. (coming from stdint.h vs sys/types.h)

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
14 years agogsm_utils: Just add some constant and timekeeping utils
Sylvain Munaut [Tue, 27 Apr 2010 19:48:40 +0000 (21:48 +0200)]
gsm_utils: Just add some constant and timekeeping utils

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
14 years agogsm0808: Port asiggnment_complete msg creation to libosmocore.
Holger Hans Peter Freyther [Sat, 17 Apr 2010 04:21:49 +0000 (06:21 +0200)]
gsm0808: Port asiggnment_complete msg creation to libosmocore.

14 years agogsm0808: Port cipher_complete to be part of libosmocore.
Holger Hans Peter Freyther [Sat, 17 Apr 2010 04:16:35 +0000 (06:16 +0200)]
gsm0808: Port cipher_complete to be part of libosmocore.

14 years agogsm0808: Add the TLV definition for some of the 0808 IEs
Holger Hans Peter Freyther [Sat, 17 Apr 2010 03:14:36 +0000 (05:14 +0200)]
gsm0808: Add the TLV definition for some of the 0808 IEs

14 years agoAdd GSM0808 utilities to Osmocore.
Holger Hans Peter Freyther [Thu, 15 Apr 2010 08:10:39 +0000 (10:10 +0200)]
Add GSM0808 utilities to Osmocore.

The code is coming from the on-waves/bsc-master branch.

14 years agogsm_08_08.h: Remove OpenBSC include file from the header.
Holger Hans Peter Freyther [Thu, 15 Apr 2010 08:01:39 +0000 (10:01 +0200)]
gsm_08_08.h: Remove OpenBSC include file from the header.

14 years agoAdd GSM08.08 protocol header.
Holger Hans Peter Freyther [Thu, 15 Apr 2010 01:14:51 +0000 (03:14 +0200)]
Add GSM08.08 protocol header.

This header is copied from bssap.h of the on-waves/bsc-master
branch and only contains the protocol specific information.

14 years agoselect.c: Make the ugly hacker uglier...
Holger Hans Peter Freyther [Sun, 11 Apr 2010 15:33:19 +0000 (17:33 +0200)]
select.c: Make the ugly hacker uglier...

Right now I'm seeing crashes when removing a link and deleting
it and I need this hack to make it not crash. We will have to
understand if llist_for_each_entry_safe has a bug or if we are
doing something bad with the list (anchors not properly initialized).

14 years agoremove references to u_int*_t and use uint*_t instead
Harald Welte [Fri, 9 Apr 2010 05:57:40 +0000 (07:57 +0200)]
remove references to u_int*_t and use uint*_t instead

14 years agogsm48: introduce MM_CONNECTION_PEND state
Andreas Eversberg [Fri, 9 Apr 2010 05:52:12 +0000 (07:52 +0200)]
gsm48: introduce MM_CONNECTION_PEND state

14 years agogsm48-ie.c: Fix year in copyright message
Harald Welte [Fri, 9 Apr 2010 05:50:18 +0000 (07:50 +0200)]
gsm48-ie.c: Fix year in copyright message

14 years agowrite_queue: Add callback for exceptions as well.
Holger Hans Peter Freyther [Thu, 8 Apr 2010 08:58:20 +0000 (10:58 +0200)]
write_queue: Add callback for exceptions as well.

14 years agoimport gsm48_mi_to_string() from OpenBSC
Harald Welte [Sun, 28 Mar 2010 10:14:50 +0000 (18:14 +0800)]
import gsm48_mi_to_string() from OpenBSC

14 years agologging: only compile stderr target if we actualy have stderr
Harald Welte [Fri, 26 Mar 2010 16:04:40 +0000 (00:04 +0800)]
logging: only compile stderr target if we actualy have stderr

14 years agoonly include strings.h if it is actually preent
Harald Welte [Fri, 26 Mar 2010 15:51:31 +0000 (23:51 +0800)]
only include strings.h if it is actually preent

14 years agologging: fix default initialization of per-category loglevels
Harald Welte [Fri, 26 Mar 2010 14:04:03 +0000 (22:04 +0800)]
logging: fix default initialization of per-category loglevels

Before this patch, there was a bug in the code caused by a memcpy
from one data structure to another. unfortuantely the data structures
were not the same, so we have to explicitly iterate over the array
and assign the structure members manually.

14 years agorename 'debug' interface to 'logging' interface
Harald Welte [Fri, 26 Mar 2010 13:24:24 +0000 (21:24 +0800)]
rename 'debug' interface to 'logging' interface

It's not really about debugging, but about generic logging...

14 years agodebug: remove unneeded 'number' member of 'struct debug_info_cat'
Harald Welte [Fri, 26 Mar 2010 13:05:43 +0000 (21:05 +0800)]
debug: remove unneeded 'number' member of 'struct debug_info_cat'

As the debug subsystem number is used as index into the debug_info_cat
array, there is no need to store the number explicitly inside the
structure again.

14 years agodebug.c: fix no-color-printing in case .color = NULL
Harald Welte [Fri, 26 Mar 2010 01:45:03 +0000 (09:45 +0800)]
debug.c: fix no-color-printing in case .color = NULL

14 years agoImport 'debug' support from OpenBSC into libosmocore
Harald Welte [Fri, 26 Mar 2010 01:33:40 +0000 (09:33 +0800)]
Import 'debug' support from OpenBSC into libosmocore

14 years agowrite_queue: Add a method to clear the queue.
Holger Hans Peter Freyther [Fri, 26 Mar 2010 08:20:22 +0000 (09:20 +0100)]
write_queue: Add a method to clear the queue.

14 years agoreplace rsl_rlm_cause_strs with rsl_rlm_cause_name()
Harald Welte [Thu, 25 Mar 2010 04:11:38 +0000 (12:11 +0800)]
replace rsl_rlm_cause_strs with rsl_rlm_cause_name()

14 years agoreplace gsm48_cc_msg_names[] with gsm48_cc_msg_name()
Harald Welte [Thu, 25 Mar 2010 04:00:54 +0000 (12:00 +0800)]
replace gsm48_cc_msg_names[] with gsm48_cc_msg_name()

and implement the backend using value_string

14 years agouse more value_string in gsm48 and rsl
Harald Welte [Thu, 25 Mar 2010 03:44:57 +0000 (11:44 +0800)]
use more value_string in gsm48 and rsl

14 years agoget_value_string(): return "unknown 0x..." instead of "unknown"
Harald Welte [Thu, 25 Mar 2010 03:37:04 +0000 (11:37 +0800)]
get_value_string(): return "unknown 0x..." instead of "unknown"

14 years agoCreate a dummy m4 directory to make autoreconf --install --force work
Holger Hans Peter Freyther [Wed, 24 Mar 2010 01:55:33 +0000 (02:55 +0100)]
Create a dummy m4 directory to make autoreconf --install --force work

Even when removing AC_CONFIG_MACRO_DIR aclocal insisted that it
needs to have a m4 directory. Make it happy by providing one. As git
is not tracking directories I needed to add a dummy file.

14 years agoadd git-version-gen magic to automatically generate package version
Harald Welte [Mon, 22 Mar 2010 16:30:19 +0000 (00:30 +0800)]
add git-version-gen magic to automatically generate package version

14 years agobump version to 0.1.0
Harald Welte [Mon, 22 Mar 2010 16:23:23 +0000 (00:23 +0800)]
bump version to 0.1.0

14 years agoosmocore: Add a direct l4h to the union of l4h pointers
Holger Hans Peter Freyther [Mon, 22 Mar 2010 02:11:10 +0000 (03:11 +0100)]
osmocore: Add a direct l4h to the union of l4h pointers

This is needed for the BSSAP code of the On Waves/BSC master branch

14 years agofix compiler warnings (itsme <itsme@xs4all.nl>)
Harald Welte [Mon, 22 Mar 2010 00:28:44 +0000 (08:28 +0800)]
fix compiler warnings (itsme <itsme@xs4all.nl>)

 * added several 'const' for strings.
 * added 'extern' to declarations of rsl_rlm_cause_strs

14 years agogsm48.h: Make the array extern to a silence a linker warning
Holger Hans Peter Freyther [Thu, 11 Mar 2010 13:42:41 +0000 (14:42 +0100)]
gsm48.h: Make the array extern to a silence a linker warning

/usr/lib/gcc/i686-pc-linux-gnu/4.3.4/../../../../i686-pc-linux-gnu/bin/ld:
Warning: size of symbol `rsl_rlm_cause_strs' changed from 8 in ./openbsc/src/libbsc.a(abis_rsl.o)
to 120 in /usr/local/lib/libosmocore.so

spotted and sent to the list by Andreas

14 years agowrite_queue: Make the bfd cb public so it can be used in a different context
Holger Hans Peter Freyther [Fri, 5 Mar 2010 18:42:09 +0000 (19:42 +0100)]
write_queue: Make the bfd cb public so it can be used in a different context

* I'm doing a nonblocking connect and for this I need to select
  on writable and the first thing I need to do is to check the
  SOL_SOCKET SO_ERROR state. I realize this by setting a different
  cb on the embedded bfd during setup and then go back to the real
  implementation.

14 years agoimport GSM04.08 encode/decode functions and mncc.h from openbsc
Harald Welte [Sun, 7 Mar 2010 22:39:54 +0000 (23:39 +0100)]
import GSM04.08 encode/decode functions and mncc.h from openbsc

14 years agoadd option --disable-tests to disable building of test binaries
Harald Welte [Sun, 7 Mar 2010 19:33:59 +0000 (20:33 +0100)]
add option --disable-tests to disable building of test binaries

14 years agoadd --disable-talloc option to build without talloc support
Harald Welte [Sun, 7 Mar 2010 19:24:30 +0000 (20:24 +0100)]
add --disable-talloc option to build without talloc support

14 years agouse strtol instead of atoi
Harald Welte [Sun, 7 Mar 2010 17:23:47 +0000 (18:23 +0100)]
use  strtol instead of atoi

14 years agomsgb: Buffer formatting and scanning functions.
Ingo Albrecht [Sun, 7 Mar 2010 17:03:41 +0000 (18:03 +0100)]
msgb: Buffer formatting and scanning functions.

14 years agoimport some gsm band/arfcn/time related utilities from OsmocomBB
Harald Welte [Sun, 7 Mar 2010 16:50:21 +0000 (17:50 +0100)]
import some gsm band/arfcn/time related utilities from OsmocomBB

14 years agointroduce RxLev statistics module, an efficient way for power scan data
Harald Welte [Sat, 6 Mar 2010 10:34:27 +0000 (11:34 +0100)]
introduce RxLev statistics module, an efficient way for power scan data

14 years agosome more ip.access specific ABIS_NM defines
Harald Welte [Sat, 6 Mar 2010 10:29:07 +0000 (11:29 +0100)]
some more ip.access specific ABIS_NM defines

14 years agomark some occasions of bitvec as 'const' as appropriate
Harald Welte [Sat, 6 Mar 2010 10:28:49 +0000 (11:28 +0100)]
mark some occasions of bitvec as 'const' as appropriate

14 years agoadd GSTMAP ARCFCN flag bits
Harald Welte [Thu, 4 Mar 2010 14:15:37 +0000 (15:15 +0100)]
add GSTMAP ARCFCN flag bits

14 years agoupdate GSMTAP to version 0x02
Harald Welte [Thu, 4 Mar 2010 14:02:54 +0000 (15:02 +0100)]
update GSMTAP to version 0x02

14 years agofix CCCH parsing
Harald Welte [Thu, 4 Mar 2010 13:30:15 +0000 (14:30 +0100)]
fix CCCH parsing

14 years agoadd new rsl_dec_chan_nr() function
Harald Welte [Thu, 4 Mar 2010 13:27:48 +0000 (14:27 +0100)]
add new rsl_dec_chan_nr() function

14 years agoimport gsm48 utility functions from OpenBSC
Harald Welte [Thu, 4 Mar 2010 09:53:03 +0000 (10:53 +0100)]
import gsm48 utility functions from OpenBSC

* gsm48_generate_lai() gsm48_generate_mid_from_tmsi() gsm48_generate_mid_from_imsi()
* gsm48_cc_msg_names[]

14 years agoimport bcd2char() and char2bcd() from OpenBSC
Harald Welte [Thu, 4 Mar 2010 09:50:32 +0000 (10:50 +0100)]
import bcd2char() and char2bcd() from OpenBSC

14 years agoimport gsm_band_name() and gsm_band_parse() from OpenBSC
Harald Welte [Thu, 4 Mar 2010 09:39:17 +0000 (10:39 +0100)]
import gsm_band_name() and gsm_band_parse() from OpenBSC

14 years agoadd 'transparent' argument to rsl_rll_push_l3() and rsl_rll_push_l3()
Harald Welte [Thu, 4 Mar 2010 09:32:09 +0000 (10:32 +0100)]
add 'transparent' argument to rsl_rll_push_l3() and rsl_rll_push_l3()

this is required to make those functions useful for OpenBSC, nut just
OsmocomBB

14 years agofix rsl_enc_chan_nr() for SDCCH4
Harald Welte [Thu, 4 Mar 2010 09:12:50 +0000 (10:12 +0100)]
fix rsl_enc_chan_nr() for SDCCH4

14 years agoimport some GSM 04.08 utility code from OpenBSC
Harald Welte [Tue, 2 Mar 2010 22:17:33 +0000 (23:17 +0100)]
import some GSM 04.08 utility code from OpenBSC

14 years agoadd two new RSL utility functions
Harald Welte [Tue, 2 Mar 2010 20:59:20 +0000 (21:59 +0100)]
add two new RSL utility functions

14 years agoadd msgb_l1() and msgb_l1len() inline functions
Harald Welte [Mon, 1 Mar 2010 21:30:51 +0000 (22:30 +0100)]
add msgb_l1() and msgb_l1len() inline functions

14 years agoImport value_string utilities and some RSL stuff from OpenBSC
Harald Welte [Mon, 1 Mar 2010 20:58:31 +0000 (21:58 +0100)]
Import value_string utilities and some RSL stuff from OpenBSC

14 years agomsgb: add msgb->l1h member
Harald Welte [Mon, 1 Mar 2010 11:55:15 +0000 (12:55 +0100)]
msgb: add msgb->l1h member