interface OPCUAServerEndPointOptions {
    certificateChain: Buffer;
    certificateManager: OPCUACertificateManager;
    defaultSecureTokenLifetime?: number;
    host?: string;
    maxConnections?: number;
    objectFactory?: any;
    port: number;
    privateKey: PrivateKey;
    serverInfo: ApplicationDescription;
    timeout?: number;
    transportSettings?: IServerTransportSettings;
}

Properties

certificateChain: Buffer

the DER certificate chain

certificateManager: OPCUACertificateManager
defaultSecureTokenLifetime?: number

the default secureToken lifetime @default=60000

host?: string

the tcp host

maxConnections?: number

the maximum number of connection allowed on the TCP server socket

20
objectFactory?: any
port: number

the tcp port

privateKey: PrivateKey

privateKey

timeout?: number

the timeout for the TCP HEL/ACK transaction (in ms)

30000
transportSettings?: IServerTransportSettings