osmo-pcu.git branch jerlbeck/master updated. 0.2-441-g2218dc2

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 May 28 15:30:07 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 "UNNAMED PROJECT".

The branch, jerlbeck/master has been updated
       via  2218dc2ad1d69b6e5c95d1b7d84de1d110281710 (commit)
       via  d9e102472a97c767cba1bd5687db30028436d623 (commit)
       via  1db67e0a35a479ef20b871c459ea3f3e0155b620 (commit)
       via  9200ce60196a289968144582f1acfac25e17eed5 (commit)
       via  ddfc0d57632c5f57aeb123f6506d3923fcec69dc (commit)
       via  d3eac2867a84d009fa3c1c7d8da9502f8468fbca (commit)
       via  1c68abaffab6b7f8472d54b7881c3618d72e00d9 (commit)
       via  71e55118f52002af433077251a5a7fee2017b40b (commit)
       via  7b9f825ae8f8a39c072413820a1a0557f420499d (commit)
       via  b0e5eaf59adbefc44e01850a6784c9da0c3abbf9 (commit)
       via  9a2845d491b088cb9e1962ba6dc8af5a4e279401 (commit)
       via  0e50ce614569b9ae7bcc6e7becc4aeec46e8369d (commit)
       via  767193e20b4172dfb0e76ec63444115dc5ae8806 (commit)
       via  d1cb41bfd020eb9b94b17e5bcaa5be36bceccc12 (commit)
       via  5752285bc55c00ddcba45c0168eef0cb0238a3a7 (commit)
       via  b75e23143b1d8733a0fdf155f431dcea8146296c (commit)
       via  4f459799e31ee8fe34ae5f7b584860f699019cfc (commit)
       via  be0cbc1b7ede65ff6c5390905fc956d52a5d88b1 (commit)
       via  87597358cfe216a80405c21559ba640eedf44ad2 (commit)
       via  939904672961fa7e28397e27f942a7d1fff4bbdf (commit)
       via  e43460b50fc152026ab96b5095b94fbac6939ab2 (commit)
       via  536708617505a017b6b263a32f592471913ec464 (commit)
       via  dfef28de887eba43747bca52584f8310450e243a (commit)
       via  67c385046dbf4fe00871bb9f56b6b82e1f9d1348 (commit)
       via  fecece0e59ab5ff705887a1247df6e02836d7c66 (commit)
       via  e04e0b0a20fb2b93855de0106873c90a88c53052 (commit)
       via  6eeb7c7e74ed8cc1e23b19453012f43563055e12 (commit)
       via  6e4ccec6c4b69681e94e4d3b27ef022e4aab81a9 (commit)
       via  0288cdb0a8d4011905da55a5b74319e38e27e70d (commit)
       via  3d62fc55d89fe1f2da0f0ca1950ab97da7e07418 (commit)
       via  87d7341fbe290582ac4a03f67349496e5306eb04 (commit)
       via  29d91e92715945f53aff4530602add765d63946e (commit)
      from  801d6fe40cd5bd11257074c7aaf113a57919fb2d (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 -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 .gitignore                                         |   2 +
 configure.ac                                       |   2 +-
 src/Makefile.am                                    |   9 +-
 src/bts.cpp                                        | 114 ++--
 src/bts.h                                          |  33 +-
 src/cxx_linuxlist.h                                | 133 +++++
 src/encoding.cpp                                   |   4 +-
 src/gprs_bssgp_pcu.cpp                             | 198 ++++++-
 src/gprs_bssgp_pcu.h                               |   8 +
 src/gprs_ms.cpp                                    | 325 +++++++++++
 src/gprs_ms.h                                      | 141 +++++
 src/gprs_ms_storage.cpp                            | 100 ++++
 src/{ta.h => gprs_ms_storage.h}                    |  34 +-
 src/openbts_sock.cpp                               |   5 +-
 src/pcu_main.cpp                                   |   2 -
 src/pcu_vty.c                                      | 174 ++++++
 src/sysmo_l1_if.c                                  |  10 +-
 src/ta.cpp                                         | 142 -----
 src/tbf.cpp                                        | 250 +++++----
 src/tbf.h                                          |  45 +-
 src/tbf_dl.cpp                                     |  90 +--
 tests/Makefile.am                                  |  21 +-
 tests/alloc/AllocTest.cpp                          |  12 +-
 tests/llist/LListTest.cpp                          |  87 +++
 tests/{types/TypesTest.err => llist/LListTest.err} |   0
 tests/llist/LListTest.ok                           |  10 +
 tests/ms/MsTest.cpp                                | 522 ++++++++++++++++++
 tests/ms/MsTest.err                                |  56 ++
 tests/ms/MsTest.ok                                 |  18 +
 tests/tbf/TbfTest.cpp                              | 271 ++++++++-
 tests/tbf/TbfTest.err                              | 609 +++++++++++++++------
 tests/tbf/TbfTest.ok                               |   6 +
 tests/testsuite.at                                 |  14 +
 33 files changed, 2807 insertions(+), 640 deletions(-)
 create mode 100644 src/cxx_linuxlist.h
 create mode 100644 src/gprs_ms.cpp
 create mode 100644 src/gprs_ms.h
 create mode 100644 src/gprs_ms_storage.cpp
 rename src/{ta.h => gprs_ms_storage.h} (58%)
 delete mode 100644 src/ta.cpp
 create mode 100644 tests/llist/LListTest.cpp
 copy tests/{types/TypesTest.err => llist/LListTest.err} (100%)
 create mode 100644 tests/llist/LListTest.ok
 create mode 100644 tests/ms/MsTest.cpp
 create mode 100644 tests/ms/MsTest.err
 create mode 100644 tests/ms/MsTest.ok


hooks/post-receive
-- 
UNNAMED PROJECT



More information about the osmocom-commitlog mailing list