Options: Except<ControlCommandOptions, "endpoint" | "prefix"> & Pick<ControlParameters.Fields, "origin" | "cost" | `flag${keyof typeof RouteFlags}`> & {
    preloadCertName?: Name;
    preloadFromKeyChain?: KeyChain;
    preloadInterestLifetime?: number;
    refreshInterval?: number | false;
    retry?: RetryOptions;
}

Type declaration

  • Optional preloadCertName?: Name

    Set to signer name to retrieve and serve certificate chain. If unset, no certificates will be served.

  • Optional preloadFromKeyChain?: KeyChain

    Local KeyChain to collect preloaded certificates. If unset, certificates will not be collected from a local KeyChain.

  • Optional preloadInterestLifetime?: number

    InterestLifetime for retrieving preloaded certificates.

    Default Value

    500
    
  • Optional refreshInterval?: number | false

    How often to refresh prefix registration (in milliseconds). Set to false disables refreshing.

  • Optional retry?: RetryOptions