Remove 'Prioritized' from PDU names

This commit is contained in:
Camden Dixie O'Brien 2025-03-01 10:35:24 +00:00
parent a02ec90816
commit 38d6b2fa9b

View File

@ -14,7 +14,7 @@ Session ::= SEQUENCE {
RequestBody ::= CHOICE { RequestBody ::= CHOICE {
ping [0] NULL, ping [0] NULL,
listPrioritizedActivities [1] NULL, listActivities [1] NULL,
logSession [2] Session logSession [2] Session
} }
@ -23,7 +23,7 @@ Request ::= SEQUENCE {
body RequestBody body RequestBody
} }
PrioritizedActivity ::= SEQUENCE { Activity ::= SEQUENCE {
subjectId INTEGER, subjectId INTEGER,
subjectName UTF8String, subjectName UTF8String,
type ActivityType, type ActivityType,
@ -39,7 +39,7 @@ Error ::= ENUMERATED {
ResponseBody ::= CHOICE { ResponseBody ::= CHOICE {
error [0] Error, error [0] Error,
ack [1] NULL, ack [1] NULL,
prioritizedActivities [2] SEQUENCE OF PrioritizedActivity activities [2] SEQUENCE OF Activity
} }
Response ::= SEQUENCE { Response ::= SEQUENCE {