pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38391?usp=email )
Change subject: Replace libosmo-sccp references with libosmo-sigtran
......................................................................
Replace libosmo-sccp references with libosmo-sigtran
Change-Id: I8556a9eb4e111340e2415c5adf0ad91927ce53ec
---
M _testenv/testenv/podman_install.py
M sccp/SCCP_Tests.ttcn
M sccp/SCCP_Tests_RAW.ttcn
M sgsn/testenv_generic.cfg
M sgsn/testenv_sns.cfg
M smlc/testenv.cfg
6 files changed, 14 insertions(+), 14 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/91/38391/1
diff --git a/_testenv/testenv/podman_install.py b/_testenv/testenv/podman_install.py
index 50ebea8..9c680b9 100644
--- a/_testenv/testenv/podman_install.py
+++ b/_testenv/testenv/podman_install.py
@@ -24,7 +24,7 @@
git_dir = os.path.join(testenv.args.cache, "git")
bb_dir = os.path.join(git_dir, "osmocom-bb")
trxcon_dir = os.path.join(bb_dir, "src/host/trxcon")
- sccp_dir = os.path.join(git_dir, "libosmo-sccp")
+ sccp_dir = os.path.join(git_dir, "libosmo-sigtran")
jobs = multiprocessing.cpu_count() + 1
os.makedirs(git_dir, exist_ok=True)
@@ -59,9 +59,9 @@
)
-def clone_libosmo_sccp():
+def clone_libosmo_sigtran():
if os.path.exists(sccp_dir):
- logging.debug("libosmo-sccp: already cloned")
+ logging.debug("libosmo-sigtran: already cloned")
return
testenv.cmd.run(
@@ -72,7 +72,7 @@
"clone",
"--depth",
"1",
- "https://gerrit.osmocom.org/libosmo-sccp",
+ "https://gerrit.osmocom.org/libosmo-sigtran",
]
)
@@ -104,7 +104,7 @@
)
if not os.path.exists(sccp_demo_user_path):
- clone_libosmo_sccp()
+ clone_libosmo_sigtran()
logging.info("Building sccp_demo_user")
testenv.cmd.run(["autoreconf", "-fi"], cwd=sccp_dir)
testenv.cmd.run(["./configure"], cwd=sccp_dir)
diff --git a/sccp/SCCP_Tests.ttcn b/sccp/SCCP_Tests.ttcn
index 62c62c6..e63dfce 100644
--- a/sccp/SCCP_Tests.ttcn
+++ b/sccp/SCCP_Tests.ttcn
@@ -3,7 +3,7 @@
* All Rights Reserved
*
* The idea is that these tests are executed against sccp_demo_user from
- * libosmo-sccp.git in server mode.
+ * libosmo-sigtran.git in server mode.
*
* Released under the terms of GNU General Public License, Version 2 or
* (at your option) any later version.
@@ -36,7 +36,7 @@
port TELNETasp_PT SCCP_DEMO_USER_VTY;
/* SCCP protocol runs on top of M3UA Emulation.
- * "System Under Test" is libosmo-sccp's sccp_demo_user example program. */
+ * "System Under Test" is libosmo-sigtran's sccp_demo_user example program. */
var SCCP_CT vc_SCCP_A;
var M3UA_CT vc_M3UA;
port SCCPasp_PT A_PORT;
@@ -96,7 +96,7 @@
}
/*
- * libosmo-sccp does not support Global Title address as a routing indicator.
+ * libosmo-sigtran does not support Global Title address as a routing indicator.
* But sccp_demo_user should not crash if such a message is received (see OS#2666).
*/
testcase TC_routing_global_title_crash() runs on MTC_CT system system_CT {
@@ -121,7 +121,7 @@
* The M3UA Emulation layer has buffered the packet and is going
* to send it when the sccp_demo_user SCCP client connects.
*
- * libosmo-sccp will echo the packet back at us in an SCCP UDTS packet.
+ * libosmo-sigtran will echo the packet back at us in an SCCP UDTS packet.
* However, the current M3UA Emulation implementation will discard this
* response because it arrives on a separate SCTP association and the
* emulation only supports one association at a time.
diff --git a/sccp/SCCP_Tests_RAW.ttcn b/sccp/SCCP_Tests_RAW.ttcn
index 5849dad..f1f602c 100644
--- a/sccp/SCCP_Tests_RAW.ttcn
+++ b/sccp/SCCP_Tests_RAW.ttcn
@@ -2,7 +2,7 @@
* All Rights Reserved
*
* The idea is that these tests are executed against sccp_demo_user from
- * libosmo-sccp.git in server mode.
+ * libosmo-sigtran.git in server mode.
*
* Released under the terms of GNU General Public License, Version 2 or
* (at your option) any later version.
@@ -33,7 +33,7 @@
port TELNETasp_PT SCCP_DEMO_USER_VTY;
/* SCCP raw port runs on top of M3UA Emulation.
- * "System Under Test" is libosmo-sccp's sccp_demo_user example program. */
+ * "System Under Test" is libosmo-sigtran's sccp_demo_user example program. */
var M3UA_CT vc_M3UA;
port SCCP_CODEC_PT MTP3;
diff --git a/sgsn/testenv_generic.cfg b/sgsn/testenv_generic.cfg
index d439c43..d58b49d 100644
--- a/sgsn/testenv_generic.cfg
+++ b/sgsn/testenv_generic.cfg
@@ -4,7 +4,7 @@
[stp]
program=osmo-stp
-make=libosmo-sccp
+make=libosmo-sigtran
package=osmo-stp
copy=osmo-stp.cfg
diff --git a/sgsn/testenv_sns.cfg b/sgsn/testenv_sns.cfg
index 7feb5d3..4972e4d 100644
--- a/sgsn/testenv_sns.cfg
+++ b/sgsn/testenv_sns.cfg
@@ -4,7 +4,7 @@
[stp]
program=osmo-stp
-make=libosmo-sccp
+make=libosmo-sigtran
package=osmo-stp
copy=osmo-stp.cfg
diff --git a/smlc/testenv.cfg b/smlc/testenv.cfg
index a52cb12..2fbdbf3 100644
--- a/smlc/testenv.cfg
+++ b/smlc/testenv.cfg
@@ -4,7 +4,7 @@
[stp]
program=osmo-stp
-make=libosmo-sccp
+make=libosmo-sigtran
package=osmo-stp
copy=osmo-stp.cfg
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38391?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I8556a9eb4e111340e2415c5adf0ad91927ce53ec
Gerrit-Change-Number: 38391
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Attention is currently required from: daniel, fixeria.
lynxis lazus has posted comments on this change by lynxis lazus. ( https://gerrit.osmocom.org/c/osmo-sgsn/+/37864?usp=email )
Change subject: Add Routing Areas
......................................................................
Patch Set 16:
(3 comments)
File src/sgsn/gprs_routing_area.c:
https://gerrit.osmocom.org/c/osmo-sgsn/+/37864/comment/f543733a_d70cc753?us… :
PS15, Line 1: /* SGSN Routing Area for 2G */
> missing a copyright header
Done
File tests/gprs_routing_area/gprs_routing_area_test.c:
https://gerrit.osmocom.org/c/osmo-sgsn/+/37864/comment/67a0255d_087372ef?us… :
PS15, Line 329: static struct log_info_cat gprs_categories[] = {
> Most likely not, I copied it over from the other tests.
I've removed more categories, the remaining ones might become handy or a somehow related.
File tests/testsuite.at:
https://gerrit.osmocom.org/c/osmo-sgsn/+/37864/comment/13181808_5e1ac476?us… :
PS15, Line 21: ignore
> But in this specific case the stderr contains logging generated by test. […]
Done
--
To view, visit https://gerrit.osmocom.org/c/osmo-sgsn/+/37864?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-sgsn
Gerrit-Branch: master
Gerrit-Change-Id: I2474b19a7471a1dea3c863ddf8372b16180211aa
Gerrit-Change-Number: 37864
Gerrit-PatchSet: 16
Gerrit-Owner: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: daniel <dwillmann(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-CC: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-CC: laforge <laforge(a)osmocom.org>
Gerrit-CC: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: daniel <dwillmann(a)sysmocom.de>
Gerrit-Comment-Date: Fri, 11 Oct 2024 15:29:49 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: fixeria <vyanitskiy(a)sysmocom.de>
Comment-In-Reply-To: lynxis lazus <lynxis(a)fe80.eu>
lynxis lazus has submitted this change. ( https://gerrit.osmocom.org/c/osmo-msc/+/38109?usp=email )
(
2 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
)Change subject: libvlr: fix tab/space issue
......................................................................
libvlr: fix tab/space issue
Change-Id: I7f831e7ee0014a2241a69f7c75f2c6404bbb7087
---
M src/libvlr/vlr.c
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
pespin: Looks good to me, approved
dexter: Looks good to me, approved
laforge: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/src/libvlr/vlr.c b/src/libvlr/vlr.c
index db4156f..e8ff1b1 100644
--- a/src/libvlr/vlr.c
+++ b/src/libvlr/vlr.c
@@ -1293,7 +1293,7 @@
}
/* Dispatch result to vsub->lu_fsm, which will either handle the result by itself (Check IMEI early) or dispatch
- * it further to lu_compl_vlr_fsm (Check IMEI after LU). */
+ * it further to lu_compl_vlr_fsm (Check IMEI after LU). */
if (gsup->message_type == OSMO_GSUP_MSGT_CHECK_IMEI_RESULT) {
if (gsup->imei_result == OSMO_GSUP_IMEI_RESULT_ACK)
osmo_fsm_inst_dispatch(vsub->lu_fsm, VLR_ULA_E_HLR_IMEI_ACK, NULL);
--
To view, visit https://gerrit.osmocom.org/c/osmo-msc/+/38109?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Change-Id: I7f831e7ee0014a2241a69f7c75f2c6404bbb7087
Gerrit-Change-Number: 38109
Gerrit-PatchSet: 3
Gerrit-Owner: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
lynxis lazus has submitted this change. ( https://gerrit.osmocom.org/c/osmo-msc/+/38108?usp=email )
(
2 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
)Change subject: msc/gsup_client_mux.h: remove include of itself
......................................................................
msc/gsup_client_mux.h: remove include of itself
Change-Id: I89ffdb98e98133bd28023a19076f3a5f02e520d2
---
M include/osmocom/msc/gsup_client_mux.h
1 file changed, 0 insertions(+), 1 deletion(-)
Approvals:
laforge: Looks good to me, but someone else must approve
dexter: Looks good to me, approved
Jenkins Builder: Verified
pespin: Looks good to me, approved
diff --git a/include/osmocom/msc/gsup_client_mux.h b/include/osmocom/msc/gsup_client_mux.h
index 501b81d..f327786 100644
--- a/include/osmocom/msc/gsup_client_mux.h
+++ b/include/osmocom/msc/gsup_client_mux.h
@@ -1,7 +1,6 @@
#pragma once
#include <osmocom/gsm/gsup.h>
-#include <osmocom/msc/gsup_client_mux.h>
struct gsup_client_mux;
struct ipaccess_unit;
--
To view, visit https://gerrit.osmocom.org/c/osmo-msc/+/38108?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Change-Id: I89ffdb98e98133bd28023a19076f3a5f02e520d2
Gerrit-Change-Number: 38108
Gerrit-PatchSet: 3
Gerrit-Owner: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmocore/+/38376?usp=email )
Change subject: netdev: osmo_netdev_set_ifupdown_ind_cb(): Fix documentation copy-paste error
......................................................................
netdev: osmo_netdev_set_ifupdown_ind_cb(): Fix documentation copy-paste error
Change-Id: I334bc7aa2fde4a880fdf25d57d24b05be8e8df85
---
M src/core/netdev.c
1 file changed, 2 insertions(+), 2 deletions(-)
Approvals:
Jenkins Builder: Verified
laforge: Looks good to me, but someone else must approve
lynxis lazus: Looks good to me, approved
diff --git a/src/core/netdev.c b/src/core/netdev.c
index 318134a..7ef7657 100644
--- a/src/core/netdev.c
+++ b/src/core/netdev.c
@@ -750,9 +750,9 @@
return netdev->priv_data;
}
-/*! Set data_ind_cb callback, called when a new packet is received on the network interface.
+/*! Set ifupdown_ind_cb callback, called when the link status (UP/DOWN) changes.
* \param[in] netdev The netdev object where the field is set
- * \param[in] data_ind_cb the user provided function to be called when the link status (UP/DOWN) changes
+ * \param[in] ifupdown_ind_cb the user provided function to be called when the link status (UP/DOWN) changes
*/
void osmo_netdev_set_ifupdown_ind_cb(struct osmo_netdev *netdev, osmo_netdev_ifupdown_ind_cb_t ifupdown_ind_cb)
{
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/38376?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I334bc7aa2fde4a880fdf25d57d24b05be8e8df85
Gerrit-Change-Number: 38376
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>