rasconfig.asn

来自「基于h323协议的软phone」· ASN 代码 · 共 70 行

ASN
70
字号
RAS-CONFIGURATION ::=

BEGIN

-- This ASN.1 file contains the settings of the RAS configuration

IMPORTS
        TransportAddress,
        EndpointType,
        AliasAddress,
        GatekeeperIdentifier,
        VendorIdentifier,
        TimeToLive,
        AlternateTransportAddresses
    FROM H323-MESSAGES;



-- ***********************************************************************************************
--
--                                  RAS related configuration
--
-- ***********************************************************************************************

RASConfiguration ::= SEQUENCE
{
    responseTimeOut             INTEGER(1..200),
    gatekeeper                  NULL OPTIONAL,
    manualRAS                   NULL OPTIONAL,
    maxFail                     INTEGER(1..200) OPTIONAL,
    allowCallsWhenNonReg        NULL OPTIONAL,
    manualRegistration          NULL OPTIONAL,
    manualDiscovery             SEQUENCE
    {
        defaultGatekeeper           TransportAddress
    } OPTIONAL,
    registrationInfo            SEQUENCE
    {
        terminalType                EndpointType,
        terminalAlias               SEQUENCE OF AliasAddress OPTIONAL,
        gatekeeperIdentifier        GatekeeperIdentifier  OPTIONAL,
        endpointVendor              VendorIdentifier OPTIONAL
        timeToLive                  TimeToLive OPTIONAL
    } OPTIONAL,
    rasMulticastAddress         TransportAddress,
    rasPort                     INTEGER (0..65535) OPTIONAL,
    ...
    compare15bitRasCrv          NULL OPTIONAL, --default 16 bit
    maxRetries                  INTEGER(1..200) OPTIONAL, -- default 3
    maxMulticastTTL             INTEGER(0..200) OPTIONAL,--default 20
    overlappedSending           NULL OPTIONAL,   -- default not used
    preGrantedArqUse            PreGrantedArqUse OPTIONAL,   -- default not used
    alternateTransportAddresses AlternateTransportAddresses OPTIONAL,
    dontRegisterOnTimeout       NULL OPTIONAL
    supportAltGK                NULL OPTIONAL
    preTimeToLiveRegistration   INTEGER (1..240) OPTIONAL -- in seconds, defaults to 1
}


PreGrantedArqUse ::= CHOICE
{
    direct          NULL,
    routed          NULL,
}




END

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?