Last active
February 24, 2025 08:53
-
-
Save pulsejet/0355bf0badbde71ffe321f3aab1ff31b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export enum TLV_SVS_V3 { | |
StateVector_V3 = 201, | |
StateVectorEntry_V3 = 202, | |
SvSeqNoEntry_V3 = 210, | |
SvBootTime_V3 = 212, | |
SvSeqNo_V3 = 214, | |
} | |
export let T_IN_StateVector_V3 = [TLV_V3.Content]; | |
export let T_IN_StateVectorEntry_V3 = [TLV_SVS_V3.StateVector_V3]; | |
export let T_IN_SvSeqNoEntry_V3 = [TLV_SVS_V3.StateVectorEntry_V3]; | |
export let T_IN_SvBootTime_V3 = [TLV_SVS_V3.SvSeqNoEntry_V3]; | |
export let T_IN_SvSeqNo_V3 = [TLV_SVS_V3.SvSeqNoEntry_V3]; | |
export let NNI_SvBootTime_V3 = 1; | |
export let NNI_SvSeqNo_V3 = 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment