File tree 4 files changed +7
-10
lines changed
4 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 2
2
<a href =" https://github.com/aligungr/UERANSIM " ><img src =" /.github/logo.png " width =" 75 " title =" UERANSIM " ></a >
3
3
</p >
4
4
<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 " />
6
6
<img src =" https://img.shields.io/badge/3GPP-R15-orange " />
7
7
<img src =" https://img.shields.io/badge/License-GPL--3.0-green " />
8
8
</p >
@@ -22,8 +22,7 @@ using it.
22
22
In terms of 3GPP coverage, fundamental control plane features are done. However, some of them are in progress.
23
23
More details can be found at [ Feature Set] ( https://github.com/aligungr/UERANSIM/wiki/Feature-Set ) .
24
24
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.
27
26
28
27
<p align =" center " >
29
28
<img src =" https://img.shields.io/badge/Radio%20Interface-simulated-orange " alt =" OS Linux " />
Original file line number Diff line number Diff line change @@ -50,10 +50,10 @@ static nr::gnb::GnbConfig *ReadConfigYaml()
50
50
51
51
result->linkIp = yaml::GetIp (config, " linkIp" );
52
52
result->ngapIp = yaml::GetIp (config, " ngapIp" );
53
- result->gtpIp = yaml::GetIp4 (config, " gtpIp" );
53
+ result->gtpIp = yaml::GetIp (config, " gtpIp" );
54
54
55
55
if (yaml::HasField (config, " gtpAdvertiseIp" ))
56
- result->gtpAdvertiseIp = yaml::GetIp4 (config, " gtpAdvertiseIp" );
56
+ result->gtpAdvertiseIp = yaml::GetIp (config, " gtpAdvertiseIp" );
57
57
58
58
result->ignoreStreamIds = yaml::GetBool (config, " ignoreStreamIds" );
59
59
result->pagingDrx = EPagingDrx::V128;
Original file line number Diff line number Diff line change 9
9
#pragma once
10
10
11
11
#include < string>
12
- #include < unistd.h>
13
-
14
12
#include < utils/network.hpp>
15
13
16
14
namespace udp
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ struct cons
15
15
// Version information
16
16
static constexpr const uint8_t Major = 3 ;
17
17
static constexpr const uint8_t Minor = 2 ;
18
- static constexpr const uint8_t Patch = 4 ;
18
+ static constexpr const uint8_t Patch = 5 ;
19
19
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 " ;
22
22
static constexpr const char *Owner = " ALİ GÜNGÖR" ;
23
23
24
24
// Some port values
You can’t perform that action at this time.
0 commit comments