osmo-iuh.git branch master updated. 629391321f10490c5b5f1edc5035ea2e5679ad3e

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/osmocom-commitlog@lists.osmocom.org/.

gitosis at osmocom.org gitosis at osmocom.org
Fri Dec 18 13:59:34 UTC 2015


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, master has been updated
       via  629391321f10490c5b5f1edc5035ea2e5679ad3e (commit)
       via  8526d158f893283fee0b176ef9c7401133949815 (commit)
       via  9c397d4969f6982093bfcec1f7f3770525a46752 (commit)
       via  2676554c92f49557373f6c91834b97c2875163bf (commit)
       via  d062df5307f15f2b4b4b4a84e9c42d8f2fa268e6 (commit)
       via  93690184b0f44d1436189d1504409a26dbbe8157 (commit)
       via  091039d47e619c01979a4d6fb278b7fb0528e29d (commit)
      from  141a0baac960e6f56b50c0abb0272b5294d6c9da (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-iuh/commit/?id=629391321f10490c5b5f1edc5035ea2e5679ad3e

commit 629391321f10490c5b5f1edc5035ea2e5679ad3e
Author: Harald Welte <laforge at gnumonks.org>
Date:   Fri Dec 18 14:57:04 2015 +0100

    {hnbap,ranap,rua}_common: use FREEMEM(), not free() directly
    
    If we allocate with CALLOC/MALLOC macros, we need to release memory via the
    same API.

http://cgit.osmocom.org/osmo-iuh/commit/?id=8526d158f893283fee0b176ef9c7401133949815

commit 8526d158f893283fee0b176ef9c7401133949815
Author: Harald Welte <laforge at gnumonks.org>
Date:   Fri Dec 18 13:41:39 2015 +0100

    hnbap/rua: Don't usse malloc() directly but use CALLOC() macro

http://cgit.osmocom.org/osmo-iuh/commit/?id=9c397d4969f6982093bfcec1f7f3770525a46752

commit 9c397d4969f6982093bfcec1f7f3770525a46752
Author: Harald Welte <laforge at gnumonks.org>
Date:   Fri Dec 18 13:33:20 2015 +0100

    ranap: Use CALLOC() macro of libasn1c
    
    we don't use malloc() directly, as that doesn't mix well with
    our libasn1c using talloc.

http://cgit.osmocom.org/osmo-iuh/commit/?id=2676554c92f49557373f6c91834b97c2875163bf

commit 2676554c92f49557373f6c91834b97c2875163bf
Author: Harald Welte <laforge at gnumonks.org>
Date:   Fri Dec 18 13:33:00 2015 +0100

    ranap: Ensure we free any intermediate dynamically allocated memory

http://cgit.osmocom.org/osmo-iuh/commit/?id=d062df5307f15f2b4b4b4a84e9c42d8f2fa268e6

commit d062df5307f15f2b4b4b4a84e9c42d8f2fa268e6
Author: Harald Welte <laforge at gnumonks.org>
Date:   Thu Dec 17 23:18:40 2015 +0100

    test-ranap.c: Further WIP, it now actually compiles

http://cgit.osmocom.org/osmo-iuh/commit/?id=93690184b0f44d1436189d1504409a26dbbe8157

commit 93690184b0f44d1436189d1504409a26dbbe8157
Author: Harald Welte <laforge at gnumonks.org>
Date:   Thu Dec 17 23:17:21 2015 +0100

    RANAP: Split FormatInformationParameter / SDUParameterItem
    
    The definition of the above data types as per 3GPP specs results in a
    SEQUENCE_OF() an anonymous structure, which is slightly inconvenient to
    use.  So let's split the SEQUENCE OF part and the actual definition of
    the item in separate types.

http://cgit.osmocom.org/osmo-iuh/commit/?id=091039d47e619c01979a4d6fb278b7fb0528e29d

commit 091039d47e619c01979a4d6fb278b7fb0528e29d
Author: Harald Welte <laforge at gnumonks.org>
Date:   Thu Dec 17 20:37:40 2015 +0100

    test-ranap.c: More WIP code for convoluted RANAP message encoding

-----------------------------------------------------------------------

Summary of changes:
 asn1/ranap/RANAP-IEs.asn                           |   6 +-
 src/hnbap_common.c                                 |   5 +-
 src/ranap/Makefile.am                              |   5 +-
 .../RANAP_SDU-FormatInformationParameterItem.c     |  83 +++++
 ... => RANAP_SDU-FormatInformationParameterItem.h} |  21 +-
 src/ranap/RANAP_SDU-FormatInformationParameters.c  |  80 +----
 src/ranap/RANAP_SDU-FormatInformationParameters.h  |  18 +-
 src/ranap/RANAP_SDU-ParameterItem.c                | 103 +++++++
 src/ranap/RANAP_SDU-ParameterItem.h                |  49 +++
 src/ranap/RANAP_SDU-Parameters.c                   | 100 +-----
 src/ranap/RANAP_SDU-Parameters.h                   |  22 +-
 src/ranap_common.c                                 |  36 ++-
 src/ranap_common.h                                 |   2 +
 src/rua_common.c                                   |   5 +-
 src/tests/test-ranap.c                             | 343 ++++++++++++++++++---
 15 files changed, 600 insertions(+), 278 deletions(-)
 create mode 100644 src/ranap/RANAP_SDU-FormatInformationParameterItem.c
 copy src/ranap/{RANAP_InterSystemInformation-TransparentContainer.h => RANAP_SDU-FormatInformationParameterItem.h} (51%)
 create mode 100644 src/ranap/RANAP_SDU-ParameterItem.c
 create mode 100644 src/ranap/RANAP_SDU-ParameterItem.h


hooks/post-receive
-- 
Osmocom code for Iuh interface



More information about the osmocom-commitlog mailing list