Skip to content
Snippets Groups Projects
Commit 60c32a53 authored by Jeno Attila Balasko's avatar Jeno Attila Balasko :speech_balloon:
Browse files

Some RAW tests corrected to be OOP compatible


Signed-off-by: default avatarbalaskoa <balaskojenoattila@gmail.com>
parent 42d21e3c
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ const octetstring SCCPstr01 := '090003070B044301B0FE044340D8FE06000430040107'O; ...@@ -27,7 +27,7 @@ const octetstring SCCPstr01 := '090003070B044301B0FE044340D8FE06000430040107'O;
template PDU_SCCP SCCP01 := {unitdata := { template PDU_SCCP SCCP01 := {unitdata := {
messageType := udt, messageType := udt,
protClass := { protClass := {
class := '0000'B, class_ := '0000'B,
messageHandling := '0000'B messageHandling := '0000'B
}, },
pointer1 := 3, pointer1 := 3,
...@@ -85,7 +85,7 @@ template PDU_SCCP SCCP02 := {connrequest := { ...@@ -85,7 +85,7 @@ template PDU_SCCP SCCP02 := {connrequest := {
messageType := cr, messageType := cr,
sourceLocRef := 'FF002B'O, sourceLocRef := 'FF002B'O,
protClass := { protClass := {
class := '0010'B, class_ := '0010'B,
messageHandling := '0000'B messageHandling := '0000'B
}, },
pointer1 := 2, pointer1 := 2,
...@@ -150,7 +150,7 @@ template PDU_SCCP SCCP03 := {connconfirm := { ...@@ -150,7 +150,7 @@ template PDU_SCCP SCCP03 := {connconfirm := {
destLocRef := 'FF002B'O, destLocRef := 'FF002B'O,
sourceLocRef:= '000001'O, sourceLocRef:= '000001'O,
protClass := { protClass := {
class := '0010'B, class_ := '0010'B,
messageHandling := '0000'B messageHandling := '0000'B
}, },
pointer1 := 1, pointer1 := 1,
......
...@@ -365,7 +365,7 @@ type record SCCP_param_CPartyAddress_opt ...@@ -365,7 +365,7 @@ type record SCCP_param_CPartyAddress_opt
//-------------------------------------------------------------------------------- //--------------------------------------------------------------------------------
type record SCCP_param_ProtocolClass type record SCCP_param_ProtocolClass
{ {
BIT4 class, BIT4 class_,
BIT4 messageHandling BIT4 messageHandling
} }
with { variant "" } with { variant "" }
...@@ -531,7 +531,7 @@ type record SCCP_param_Segmentation_opt ...@@ -531,7 +531,7 @@ type record SCCP_param_Segmentation_opt
LIN1 paramLength, //always 4! LIN1 paramLength, //always 4!
BIT4 remainingSegment, BIT4 remainingSegment,
BIT2 reserved, BIT2 reserved,
BIT1 class, BIT1 class_,
BIT1 firstSegm, BIT1 firstSegm,
OCT3 segmLocalRef OCT3 segmLocalRef
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment