diggy - v1.1.1
    Preparing search index...

    Type Alias SrvRecordData

    Represents the data for a DNS SRV (Service) record.

    type SrvRecordData = {
        name: string;
        port: number;
        priority: number;
        weight: number;
    }
    Index

    Properties

    name: string

    The target domain name of the service, which can be a hostname or an IP address.

    port: number

    The port number on which the service is running.

    priority: number

    The priority of the SRV record, used to determine the order in which services should be used.

    weight: number

    The weight of the SRV record, used to distribute traffic among multiple services with the same priority.