lib: set uplink flag for NAS

This commit is contained in:
Will Greenberg
2025-01-29 17:06:56 -08:00
committed by Cooper Quintin
parent 3619df32ab
commit 5a084f1abb
3 changed files with 13 additions and 6 deletions

View File

@@ -221,9 +221,9 @@ pub enum Nas4GMessageDirection {
// * 0xb0ec: plain EMM NAS message (incoming)
// * 0xb0ed: plain EMM NAS message (outgoing)
#[deku(id_pat = "0xb0e2 | 0xb0ec")]
Inbound,
Downlink,
#[deku(id_pat = "0xb0e3 | 0xb0ed")]
Outbound,
Uplink,
}
#[derive(Debug, Clone, PartialEq, DekuRead, DekuWrite)]