Skip to content

Commit b8adc2f

Browse files
committed
Release of 3.2.5
1 parent 19484aa commit b8adc2f

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<a href="https://github.com/aligungr/UERANSIM"><img src="/.github/logo.png" width="75" title="UERANSIM"></a>
33
</p>
44
<p align="center">
5-
<img src="https://img.shields.io/badge/UERANSIM-v3.2.4-blue" />
5+
<img src="https://img.shields.io/badge/UERANSIM-v3.2.5-blue" />
66
<img src="https://img.shields.io/badge/3GPP-R15-orange" />
77
<img src="https://img.shields.io/badge/License-GPL--3.0-green"/>
88
</p>
@@ -22,8 +22,7 @@ using it.
2222
In terms of 3GPP coverage, fundamental control plane features are done. However, some of them are in progress.
2323
More details can be found at [Feature Set](https://github.com/aligungr/UERANSIM/wiki/Feature-Set).
2424

25-
Meanwhile, 5G-NR radio interface is partially implemented but not completed yet. Currently, we utilize the radio
26-
interface over a simulated environment.
25+
Meanwhile, 5G-NR radio interface is partially implemented, and simulated over UDP protocol.
2726

2827
<p align="center">
2928
<img src="https://img.shields.io/badge/Radio%20Interface-simulated-orange" alt="OS Linux"/>

src/gnb.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ static nr::gnb::GnbConfig *ReadConfigYaml()
5050

5151
result->linkIp = yaml::GetIp(config, "linkIp");
5252
result->ngapIp = yaml::GetIp(config, "ngapIp");
53-
result->gtpIp = yaml::GetIp4(config, "gtpIp");
53+
result->gtpIp = yaml::GetIp(config, "gtpIp");
5454

5555
if (yaml::HasField(config, "gtpAdvertiseIp"))
56-
result->gtpAdvertiseIp = yaml::GetIp4(config, "gtpAdvertiseIp");
56+
result->gtpAdvertiseIp = yaml::GetIp(config, "gtpAdvertiseIp");
5757

5858
result->ignoreStreamIds = yaml::GetBool(config, "ignoreStreamIds");
5959
result->pagingDrx = EPagingDrx::V128;

src/lib/udp/server.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
#pragma once
1010

1111
#include <string>
12-
#include <unistd.h>
13-
1412
#include <utils/network.hpp>
1513

1614
namespace udp

src/utils/constants.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ struct cons
1515
// Version information
1616
static constexpr const uint8_t Major = 3;
1717
static constexpr const uint8_t Minor = 2;
18-
static constexpr const uint8_t Patch = 4;
18+
static constexpr const uint8_t Patch = 5;
1919
static constexpr const char *Project = "UERANSIM";
20-
static constexpr const char *Tag = "v3.2.4";
21-
static constexpr const char *Name = "UERANSIM v3.2.4";
20+
static constexpr const char *Tag = "v3.2.5";
21+
static constexpr const char *Name = "UERANSIM v3.2.5";
2222
static constexpr const char *Owner = "ALİ GÜNGÖR";
2323

2424
// Some port values

0 commit comments

Comments
 (0)