Commit 13eb9f28 authored by Luke Mewburn's avatar Luke Mewburn
Browse files

LI-PS-PDU: refactor DeliveryDestination

Move deliveryEndpoint up to DeliveryDestination.
Change DeliveryInterface to an enum
parent 6666fa91
Loading
Loading
Loading
Loading
Loading
+11 −10
Original line number Diff line number Diff line
@@ -732,16 +732,9 @@ DictionaryEntry ::= SEQUENCE

DeliveryDestination ::= SEQUENCE
{
    deliveryInterface           [1] DeliveryInterface,
    deliveryPayloadTypes        [2] SEQUENCE OF DeliveryPayloadType OPTIONAL,
    ...
}

DeliveryInterface ::= CHOICE
{
    hi2                         [1] DeliveryEndpoint,
    hi3                         [2] DeliveryEndpoint,
    hi4                         [3] DeliveryEndpoint,
    deliveryEndpoint            [1] DeliveryEndpoint,
    deliveryInterfaces          [2] SEQUENCE OF DeliveryInterface OPTIONAL,
    deliveryPayloadTypes        [3] SEQUENCE OF DeliveryPayloadType OPTIONAL,
    ...
}

@@ -766,6 +759,14 @@ DeliveryHostPort ::= SEQUENCE
    ...
}

DeliveryInterface ::= ENUMERATED
{
    hi2(1),
    hi3(2),
    hi4(3),
    ...
}

DeliveryPayloadType ::= ENUMERATED
{
    part1(1),