diff --git a/README.md b/README.md index d0a0e227d..22ab95042 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@

- +

@@ -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.

OS Linux 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 -#include - #include namespace udp diff --git a/src/utils/constants.hpp b/src/utils/constants.hpp index 9c2e44851..c62f515a9 100644 --- a/src/utils/constants.hpp +++ b/src/utils/constants.hpp @@ -15,10 +15,10 @@ struct cons // Version information static constexpr const uint8_t Major = 3; static constexpr const uint8_t Minor = 2; - static constexpr const uint8_t Patch = 4; + static constexpr const uint8_t Patch = 5; static constexpr const char *Project = "UERANSIM"; - static constexpr const char *Tag = "v3.2.4"; - static constexpr const char *Name = "UERANSIM v3.2.4"; + static constexpr const char *Tag = "v3.2.5"; + static constexpr const char *Name = "UERANSIM v3.2.5"; static constexpr const char *Owner = "ALİ GÜNGÖR"; // Some port values