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