Commit 242f3dab authored by Luke Mewburn's avatar Luke Mewburn
Browse files

LI-PS-PDU: provide IPAddressPort

Temporary workaround during refactor
parent 817dd8d3
Loading
Loading
Loading
Loading
Loading
+12 −3
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@ IMPORTS
    LIID,
    LongString,
    ShortString,
    TCPPort,
    WGS84CoordinateDecimal
        FROM Common-Parameters
        {itu-t(0) identified-organization(4) etsi(0) common-parameters(3280) version281(281)}
@@ -738,9 +739,9 @@ DeliveryDestination ::= SEQUENCE

DeliveryInterface ::= CHOICE
{
    hi2                         [1] Common-Parameters.IPAddressPort,
    hi3                         [2] Common-Parameters.IPAddressPort,
    hi4                         [3] Common-Parameters.IPAddressPort,
    hi2                         [1] IPAddressPort,
    hi3                         [2] IPAddressPort,
    hi4                         [3] IPAddressPort,
    ...
}

@@ -757,6 +758,14 @@ DeliveryPayloadType ::= ENUMERATED
    ...
}

-- XXX temporary type
IPAddressPort ::= SEQUENCE
{
    address [1] IPAddress,
    port    [2] Common-Parameters.TCPPort,
    ...
}

-- ===================================
-- Common Parameters
-- ===================================