openbsc.git branch neels/vlr updated. 0.15.0-683-g8b5612ced

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
Thu Feb 9 22:24:13 UTC 2017


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/vlr has been updated
  discards  d60ebfe6c4ac53c75e345e573340dab74f28ae2d (commit)
  discards  88717b33333b68bda2fd49781307f5cc27a92307 (commit)
  discards  b5417a7f0a96b706af3b8e9b84ba073b85f864d7 (commit)
  discards  396fae382bc8c182d99471f99e27b8c58909db6d (commit)
       via  8b5612cedb4a3b560b582a62746d0a1dc1f84eaa (commit)
       via  88fa7465e410810ba360a163980843ccdfe21f84 (commit)
       via  a9fd848866156d53d98c68a7125296bad964d0a0 (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 (d60ebfe6c4ac53c75e345e573340dab74f28ae2d)
            \
             N -- N -- N (8b5612cedb4a3b560b582a62746d0a1dc1f84eaa)

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=8b5612cedb4a3b560b582a62746d0a1dc1f84eaa

commit 8b5612cedb4a3b560b582a62746d0a1dc1f84eaa
Author: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Date:   Wed Jan 25 15:04:16 2017 +0100

    Add msc_vlr test suite for MSC+VLR end-to-end tests
    
    Change-Id: Ic073f3a069a7f5e7e421e0e56140f069ee9b10b8

http://cgit.osmocom.org/openbsc/commit/?id=88fa7465e410810ba360a163980843ccdfe21f84

commit 88fa7465e410810ba360a163980843ccdfe21f84
Author: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Date:   Fri Feb 3 02:42:47 2017 +0100

    Use libvlr in libmsc (large refactoring)
    
    Original libvlr code is by Harald Welte <laforge at gnumonks.org>,
    polished and tweaked by Neels Hofmeyr <nhofmeyr at sysmocom.de>.
    
    This is a long series of development collapsed in one patch. The original
    history may still be available as branch neels/vlr_orig.
    
    TODO: This commit may be split in several smaller changes before merging to
    master.
    
    Related: OS#1592
    
    Change-Id: I702ba504ce2de93507312c28eca8d11f09f4ee8b

http://cgit.osmocom.org/openbsc/commit/?id=a9fd848866156d53d98c68a7125296bad964d0a0

commit a9fd848866156d53d98c68a7125296bad964d0a0
Author: Harald Welte <laforge at gnumonks.org>
Date:   Fri Jun 17 00:06:42 2016 +0200

    Add libvlr implementation
    
    Original libvlr code is by Harald Welte <laforge at gnumonks.org>,
    polished and tweaked by Neels Hofmeyr <nhofmeyr at sysmocom.de>.
    
    This is a long series of development collapsed in one patch. The original
    history may still be available as branch neels/vlr_orig.
    
    Related: OS#1592
    Change-Id: I3f75de5f0cc2ff77f276fd39832dd3621309c4b9

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

Summary of changes:
 openbsc/.gitignore                                 |   2 +
 openbsc/include/openbsc/osmo_msc.h                 |   3 +
 openbsc/include/openbsc/vlr.h                      |   6 +
 openbsc/src/libmsc/gsm_04_08.c                     |  11 +-
 openbsc/src/libmsc/osmo_msc.c                      |   4 +-
 openbsc/src/libmsc/subscr_conn.c                   |  48 ++-
 openbsc/src/libvlr/vlr.c                           |  14 +
 openbsc/src/libvlr/vlr_access_req_fsm.c            |  13 +-
 openbsc/src/libvlr/vlr_lu_fsm.c                    |  10 +
 openbsc/tests/msc_vlr/Makefile.am                  |  23 +-
 openbsc/tests/msc_vlr/msc_vlr_test_gsm_authen.c    | 121 ++++----
 openbsc/tests/msc_vlr/msc_vlr_test_gsm_authen.err  | 172 ++++++-----
 openbsc/tests/msc_vlr/msc_vlr_test_gsm_ciph.c      | 185 ++++++------
 openbsc/tests/msc_vlr/msc_vlr_test_gsm_ciph.err    | 134 ++++-----
 openbsc/tests/msc_vlr/msc_vlr_test_hlr_reject.c    | 133 +++++----
 openbsc/tests/msc_vlr/msc_vlr_test_hlr_reject.err  | 215 ++++++++++----
 openbsc/tests/msc_vlr/msc_vlr_test_hlr_timeout.c   | 154 ++++++++++
 openbsc/tests/msc_vlr/msc_vlr_test_hlr_timeout.err | 233 +++++++++++++++
 ...t_gsm_authen.ok => msc_vlr_test_hlr_timeout.ok} |   0
 openbsc/tests/msc_vlr/msc_vlr_test_ms_timeout.c    | 183 ++++++++++++
 openbsc/tests/msc_vlr/msc_vlr_test_ms_timeout.err  | 321 +++++++++++++++++++++
 ...st_gsm_authen.ok => msc_vlr_test_ms_timeout.ok} |   0
 openbsc/tests/msc_vlr/msc_vlr_test_no_authen.c     |  82 +++---
 openbsc/tests/msc_vlr/msc_vlr_test_no_authen.err   | 124 ++++----
 openbsc/tests/msc_vlr/msc_vlr_test_rest.c          |  63 ++--
 openbsc/tests/msc_vlr/msc_vlr_test_rest.err        |  63 ++--
 openbsc/tests/msc_vlr/msc_vlr_test_umts_authen.c   |  55 ++--
 openbsc/tests/msc_vlr/msc_vlr_test_umts_authen.err | 112 ++++---
 openbsc/tests/msc_vlr/msc_vlr_tests.c              | 136 ++++++++-
 openbsc/tests/msc_vlr/msc_vlr_tests.h              |  24 +-
 openbsc/tests/testsuite.at                         |  14 +
 31 files changed, 1911 insertions(+), 747 deletions(-)
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_hlr_timeout.c
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_hlr_timeout.err
 copy openbsc/tests/msc_vlr/{msc_vlr_test_gsm_authen.ok => msc_vlr_test_hlr_timeout.ok} (100%)
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_ms_timeout.c
 create mode 100644 openbsc/tests/msc_vlr/msc_vlr_test_ms_timeout.err
 copy openbsc/tests/msc_vlr/{msc_vlr_test_gsm_authen.ok => msc_vlr_test_ms_timeout.ok} (100%)


hooks/post-receive
-- 
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)



More information about the osmocom-commitlog mailing list