Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-AMF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-AMF
Commits
4fa0f372
Commit
4fa0f372
authored
Jan 15, 2023
by
Tien Thinh NGUYEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update DL NAS Transport
parent
1987179c
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
154 additions
and
99 deletions
+154
-99
src/nas/ies/Payload_Container.cpp
src/nas/ies/Payload_Container.cpp
+3
-4
src/nas/ies/Payload_Container.hpp
src/nas/ies/Payload_Container.hpp
+3
-1
src/nas/msgs/DLNASTransport.cpp
src/nas/msgs/DLNASTransport.cpp
+133
-85
src/nas/msgs/DLNASTransport.hpp
src/nas/msgs/DLNASTransport.hpp
+15
-9
No files found.
src/nas/ies/Payload_Container.cpp
View file @
4fa0f372
...
...
@@ -96,12 +96,11 @@ Payload_Container::Payload_Container(
//------------------------------------------------------------------------------
Payload_Container
::~
Payload_Container
()
{}
/*
//------------------------------------------------------------------------------
void Payload_Container::setValue(uint8_t iei, uint8_t value) {
_iei = iei;
void
Payload_Container
::
SetValue
(
const
bstring
&
cnt
)
{
content
=
std
::
optional
<
bstring
>
(
cnt
);
SetLengthIndicator
(
blength
(
cnt
));
}
*/
//------------------------------------------------------------------------------
void
Payload_Container
::
SetValue
(
...
...
src/nas/ies/Payload_Container.hpp
View file @
4fa0f372
...
...
@@ -55,9 +55,11 @@ class Payload_Container : Type6NasIe {
int
Encode
(
uint8_t
*
buf
,
int
len
,
uint8_t
type
);
int
Decode
(
uint8_t
*
buf
,
int
len
,
bool
is_iei
,
uint8_t
type
);
void
SetValue
(
const
bstring
&
cnt
);
bool
GetValue
(
bstring
&
cnt
)
const
;
void
SetValue
(
const
std
::
vector
<
PayloadContainerEntry
>&
content
);
bool
GetValue
(
std
::
vector
<
PayloadContainerEntry
>&
content
)
const
;
bool
GetValue
(
bstring
&
cnt
)
const
;
private:
std
::
optional
<
bstring
>
content
;
...
...
src/nas/msgs/DLNASTransport.cpp
View file @
4fa0f372
This diff is collapsed.
Click to expand it.
src/nas/msgs/DLNASTransport.hpp
View file @
4fa0f372
...
...
@@ -26,7 +26,7 @@
namespace
nas
{
class
DLNASTransport
{
class
DLNASTransport
:
public
NasMmPlainHeader
{
public:
DLNASTransport
();
~
DLNASTransport
();
...
...
@@ -34,7 +34,7 @@ class DLNASTransport {
void
SetHeader
(
uint8_t
security_header_type
);
int
Encode
(
uint8_t
*
buf
,
int
len
);
int
Decode
(
NasMmPlainHeader
*
header
,
uint8_t
*
buf
,
int
len
);
int
Decode
(
uint8_t
*
buf
,
int
len
);
void
SetPayloadContainerType
(
uint8_t
value
);
...
...
@@ -42,18 +42,24 @@ class DLNASTransport {
void
SetPayloadContainer
(
uint8_t
*
buf
,
int
len
);
void
SetPduSessionId
(
uint8_t
value
);
// TODO: Get
void
SetAdditionalInformation
(
const
bstring
&
value
);
// TODO: Get
void
Set5gmmCause
(
uint8_t
value
);
// TODO: Get
void
SetBackOffTimerValue
(
uint8_t
unit
,
uint8_t
value
);
// TODO: Get
public:
NasMmPlainHeader
*
plain_header
;
PayloadContainerType
*
ie_payload_container_type
;
Payload_Container
*
ie_payload_container
;
PduSessionIdentity2
*
ie_pdu_session_identity_2
;
AdditionalInformation
*
ie_additional_information
;
_5GMM_Cause
*
ie_5gmm_cause
;
GprsTimer3
*
ie_back_off_timer_value
;
PayloadContainerType
ie_payload_container_type
;
// Mandatory
Payload_Container
ie_payload_container
;
// Mandatory
std
::
optional
<
PduSessionIdentity2
>
ie_pdu_session_identity_2
;
// Optional
std
::
optional
<
AdditionalInformation
>
ie_additional_information
;
// Optional
std
::
optional
<
_5GMM_Cause
>
ie_5gmm_cause
;
// Optional
std
::
optional
<
GprsTimer3
>
ie_back_off_timer_value
;
// Optional
};
}
// namespace nas
...
...
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