aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2023-03-14 11:16:22 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2023-03-14 11:19:53 +0100
commitb5a8a67dfee9c036cb4766801c00d93ba9e7b8b8 (patch)
tree50e8bfd6c24636d1e46d8adcc32874d011fc304f
parent93d7ece833132f6f95915993681d8c4bfd059fcd (diff)
Update libosmogsm deprecated include
The previous gprs/protocol/gsm_04_60.h header from libosmogsm was misleading because it was placed in the subdirectory used by libosmogb, and hence was recently deprecated in favour of gsm/protocol/gsm_04_60.h. Let's follow the pragma message advising to move to the new header file. Depends: libosmocore 0158b05337a825352d9fd7f074170b686e9fd1e5 Change-Id: I027abbf3ed4c71331000565af1ef4f08f10cfafc
-rw-r--r--TODO-RELEASE1
-rw-r--r--tests/edge/EdgeTest.cpp2
-rw-r--r--tests/tbf/TbfTest.cpp2
3 files changed, 3 insertions, 2 deletions
diff --git a/TODO-RELEASE b/TODO-RELEASE
index cbfda241..69520290 100644
--- a/TODO-RELEASE
+++ b/TODO-RELEASE
@@ -7,3 +7,4 @@
# If any interfaces have been added since the last public release: c:r:a + 1.
# If any interfaces have been removed or changed since the last public release: c:r:0.
#library what description / commit summary line
+libosmocore > 1.8.0 osmocom/gsm/protocol/gsm_44_060.h \ No newline at end of file
diff --git a/tests/edge/EdgeTest.cpp b/tests/edge/EdgeTest.cpp
index 4cc79609..edce20f1 100644
--- a/tests/edge/EdgeTest.cpp
+++ b/tests/edge/EdgeTest.cpp
@@ -38,7 +38,7 @@ extern "C" {
#include <osmocom/core/talloc.h>
#include <osmocom/core/utils.h>
#include <osmocom/vty/vty.h>
-#include <osmocom/gprs/protocol/gsm_04_60.h>
+#include <osmocom/gsm/protocol/gsm_44_060.h>
}
#include <errno.h>
diff --git a/tests/tbf/TbfTest.cpp b/tests/tbf/TbfTest.cpp
index 0b2e8680..cc62bc2b 100644
--- a/tests/tbf/TbfTest.cpp
+++ b/tests/tbf/TbfTest.cpp
@@ -43,7 +43,7 @@ extern "C" {
#include <osmocom/core/talloc.h>
#include <osmocom/core/utils.h>
#include <osmocom/vty/vty.h>
-#include <osmocom/gprs/protocol/gsm_04_60.h>
+#include <osmocom/gsm/protocol/gsm_44_060.h>
#include <osmocom/gsm/l1sap.h>
#include <osmocom/core/fsm.h>
}