From b8adc2fba32e10047dc771accce4e4f061d17839 Mon Sep 17 00:00:00 2001
From: aligungr
- +
@@ -22,8 +22,7 @@ using it. In terms of 3GPP coverage, fundamental control plane features are done. However, some of them are in progress. More details can be found at [Feature Set](https://github.com/aligungr/UERANSIM/wiki/Feature-Set). -Meanwhile, 5G-NR radio interface is partially implemented but not completed yet. Currently, we utilize the radio -interface over a simulated environment. +Meanwhile, 5G-NR radio interface is partially implemented, and simulated over UDP protocol.
diff --git a/src/gnb.cpp b/src/gnb.cpp
index 6c2f4f308..cf8472ce9 100644
--- a/src/gnb.cpp
+++ b/src/gnb.cpp
@@ -50,10 +50,10 @@ static nr::gnb::GnbConfig *ReadConfigYaml()
result->linkIp = yaml::GetIp(config, "linkIp");
result->ngapIp = yaml::GetIp(config, "ngapIp");
- result->gtpIp = yaml::GetIp4(config, "gtpIp");
+ result->gtpIp = yaml::GetIp(config, "gtpIp");
if (yaml::HasField(config, "gtpAdvertiseIp"))
- result->gtpAdvertiseIp = yaml::GetIp4(config, "gtpAdvertiseIp");
+ result->gtpAdvertiseIp = yaml::GetIp(config, "gtpAdvertiseIp");
result->ignoreStreamIds = yaml::GetBool(config, "ignoreStreamIds");
result->pagingDrx = EPagingDrx::V128;
diff --git a/src/lib/udp/server.hpp b/src/lib/udp/server.hpp
index 88b9df379..3e24dabe5 100644
--- a/src/lib/udp/server.hpp
+++ b/src/lib/udp/server.hpp
@@ -9,8 +9,6 @@
#pragma once
#include