Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
UERANSIM
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
UERANSIM
Commits
b237a9e1
Commit
b237a9e1
authored
Jun 06, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UAC implementation
parent
0ccaa71a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
0 deletions
+29
-0
src/ue/rrc/access.cpp
src/ue/rrc/access.cpp
+22
-0
src/ue/rrc/sap.cpp
src/ue/rrc/sap.cpp
+4
-0
src/ue/rrc/task.hpp
src/ue/rrc/task.hpp
+3
-0
No files found.
src/ue/rrc/access.cpp
0 → 100644
View file @
b237a9e1
//
// This file is a part of UERANSIM open source project.
// Copyright (c) 2021 ALİ GÜNGÖR.
//
// The software and all associated files are licensed under GPL-3.0
// and subject to the terms and conditions defined in LICENSE file.
//
#include "task.hpp"
#include <lib/rrc/encode.hpp>
#include <ue/nas/task.hpp>
namespace
nr
::
ue
{
void
UeRrcTask
::
performUac
(
std
::
shared_ptr
<
LightSync
<
UacInput
,
UacOutput
>>
&
uacCtl
)
{
// TODO
}
}
// namespace nr::ue
src/ue/rrc/sap.cpp
View file @
b237a9e1
...
@@ -56,6 +56,10 @@ void UeRrcTask::handleNasSapMessage(NmUeNasToRrc &msg)
...
@@ -56,6 +56,10 @@ void UeRrcTask::handleNasSapMessage(NmUeNasToRrc &msg)
triggerCycle
();
triggerCycle
();
break
;
break
;
}
}
case
NmUeNasToRrc
:
:
PERFORM_UAC
:
{
performUac
(
msg
.
uacCtl
);
break
;
}
}
}
}
}
...
...
src/ue/rrc/task.hpp
View file @
b237a9e1
...
@@ -133,6 +133,9 @@ class UeRrcTask : public NtsTask
...
@@ -133,6 +133,9 @@ class UeRrcTask : public NtsTask
/* Failures */
/* Failures */
void
declareRadioLinkFailure
(
rls
::
ERlfCause
cause
);
void
declareRadioLinkFailure
(
rls
::
ERlfCause
cause
);
void
handleRadioLinkFailure
(
rls
::
ERlfCause
cause
);
void
handleRadioLinkFailure
(
rls
::
ERlfCause
cause
);
/* Access Control */
void
performUac
(
std
::
shared_ptr
<
LightSync
<
UacInput
,
UacOutput
>>&
uacCtl
);
};
};
}
// namespace nr::ue
}
// namespace nr::ue
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment