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
46aa9088
Commit
46aa9088
authored
Apr 17, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RRC paging handling
parent
173e1468
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
+11
-0
src/gnb/rrc/handler.cpp
src/gnb/rrc/handler.cpp
+6
-0
src/gnb/rrc/task.cpp
src/gnb/rrc/task.cpp
+3
-0
src/gnb/rrc/task.hpp
src/gnb/rrc/task.hpp
+2
-0
No files found.
src/gnb/rrc/handler.cpp
View file @
46aa9088
...
@@ -169,4 +169,10 @@ void GnbRrcTask::handleRadioLinkFailure(int ueId)
...
@@ -169,4 +169,10 @@ void GnbRrcTask::handleRadioLinkFailure(int ueId)
m_ueCtx
.
erase
(
ueId
);
m_ueCtx
.
erase
(
ueId
);
}
}
void
GnbRrcTask
::
handlePaging
(
const
asn
::
Unique
<
ASN_NGAP_FiveG_S_TMSI
>
&
tmsi
,
const
asn
::
Unique
<
ASN_NGAP_TAIListForPaging
>
&
taiList
)
{
// TODO
}
}
// namespace nr::gnb
}
// namespace nr::gnb
\ No newline at end of file
src/gnb/rrc/task.cpp
View file @
46aa9088
...
@@ -69,6 +69,9 @@ void GnbRrcTask::onLoop()
...
@@ -69,6 +69,9 @@ void GnbRrcTask::onLoop()
releaseConnection
(
w
->
ueId
);
releaseConnection
(
w
->
ueId
);
break
;
break
;
}
}
case
NwGnbNgapToRrc
:
:
PAGING
:
handlePaging
(
w
->
uePagingTmsi
,
w
->
taiListForPaging
);
break
;
}
}
break
;
break
;
}
}
...
...
src/gnb/rrc/task.hpp
View file @
46aa9088
...
@@ -70,6 +70,8 @@ class GnbRrcTask : public NtsTask
...
@@ -70,6 +70,8 @@ class GnbRrcTask : public NtsTask
void
deliverUplinkNas
(
int
ueId
,
OctetString
&&
nasPdu
);
void
deliverUplinkNas
(
int
ueId
,
OctetString
&&
nasPdu
);
void
releaseConnection
(
int
ueId
);
void
releaseConnection
(
int
ueId
);
void
handleRadioLinkFailure
(
int
ueId
);
void
handleRadioLinkFailure
(
int
ueId
);
void
handlePaging
(
const
asn
::
Unique
<
ASN_NGAP_FiveG_S_TMSI
>
&
tmsi
,
const
asn
::
Unique
<
ASN_NGAP_TAIListForPaging
>
&
taiList
);
void
receiveUplinkInformationTransfer
(
int
ueId
,
const
ASN_RRC_ULInformationTransfer
&
msg
);
void
receiveUplinkInformationTransfer
(
int
ueId
,
const
ASN_RRC_ULInformationTransfer
&
msg
);
void
receiveRrcSetupRequest
(
int
ueId
,
const
ASN_RRC_RRCSetupRequest
&
msg
);
void
receiveRrcSetupRequest
(
int
ueId
,
const
ASN_RRC_RRCSetupRequest
&
msg
);
...
...
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