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
db5d8caa
Commit
db5d8caa
authored
Feb 20, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bit field refactor
parent
5c4f6b05
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
src/nas/ie3.hpp
src/nas/ie3.hpp
+2
-2
src/nas/ie4.hpp
src/nas/ie4.hpp
+1
-1
src/nas/values.hpp
src/nas/values.hpp
+4
-4
No files found.
src/nas/ie3.hpp
View file @
db5d8caa
...
@@ -65,7 +65,7 @@ struct IEEpsNasSecurityAlgorithms : InformationElement3
...
@@ -65,7 +65,7 @@ struct IEEpsNasSecurityAlgorithms : InformationElement3
struct
IEGprsTimer
:
InformationElement3
struct
IEGprsTimer
:
InformationElement3
{
{
int
timerValue
:
5
;
int
timerValue
;
// 5-bit
EGprsTimerValueUnit
timerValueUnit
;
EGprsTimerValueUnit
timerValueUnit
;
IEGprsTimer
();
IEGprsTimer
();
...
@@ -91,7 +91,7 @@ struct IEIntegrityProtectionMaximumDataRate : InformationElement3
...
@@ -91,7 +91,7 @@ struct IEIntegrityProtectionMaximumDataRate : InformationElement3
struct
IEMaximumNumberOfSupportedPacketFilters
:
InformationElement3
struct
IEMaximumNumberOfSupportedPacketFilters
:
InformationElement3
{
{
int
value
:
11
;
int
value
;
// 11-bit
IEMaximumNumberOfSupportedPacketFilters
();
IEMaximumNumberOfSupportedPacketFilters
();
explicit
IEMaximumNumberOfSupportedPacketFilters
(
int
value
);
explicit
IEMaximumNumberOfSupportedPacketFilters
(
int
value
);
...
...
src/nas/ie4.hpp
View file @
db5d8caa
...
@@ -152,7 +152,7 @@ struct IES1UeNetworkCapability : InformationElement4
...
@@ -152,7 +152,7 @@ struct IES1UeNetworkCapability : InformationElement4
struct
IEGprsTimer3
:
InformationElement4
struct
IEGprsTimer3
:
InformationElement4
{
{
int
timerValue
:
5
;
int
timerValue
;
// 5-bit
EGprsTimerValueUnit3
unit
;
EGprsTimerValueUnit3
unit
;
IEGprsTimer3
();
IEGprsTimer3
();
...
...
src/nas/values.hpp
View file @
db5d8caa
...
@@ -20,7 +20,7 @@ namespace nas
...
@@ -20,7 +20,7 @@ namespace nas
struct
VAmfSetId
struct
VAmfSetId
{
{
int
value
:
10
;
int
value
;
// 10-bit
explicit
VAmfSetId
(
int
value
);
explicit
VAmfSetId
(
int
value
);
...
@@ -53,9 +53,9 @@ struct VQoSFlowParameter
...
@@ -53,9 +53,9 @@ struct VQoSFlowParameter
struct
VQoSFlowDescription
struct
VQoSFlowDescription
{
{
int
qfi
:
6
;
int
qfi
;
// 6-bit
EQoSOperationCode
opCode
;
EQoSOperationCode
opCode
;
int
numOfParameters
:
6
;
int
numOfParameters
;
// 6-bit
bool
eBit
;
bool
eBit
;
std
::
vector
<
std
::
unique_ptr
<
VQoSFlowParameter
>>
parameterList
;
std
::
vector
<
std
::
unique_ptr
<
VQoSFlowParameter
>>
parameterList
;
...
@@ -216,7 +216,7 @@ struct VPartialTrackingAreaIdentityList
...
@@ -216,7 +216,7 @@ struct VPartialTrackingAreaIdentityList
struct
VPduSessionReactivationResultErrorCause
struct
VPduSessionReactivationResultErrorCause
{
{
int
pduSessionId
:
4
;
int
pduSessionId
;
EMmCause
causeValue
;
EMmCause
causeValue
;
VPduSessionReactivationResultErrorCause
(
int
pduSessionId
,
EMmCause
causeValue
);
VPduSessionReactivationResultErrorCause
(
int
pduSessionId
,
EMmCause
causeValue
);
...
...
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