Interface ControlCommandOptions

interface ControlCommandOptions {
    cOpts?: ConsumerOptions;
    endpoint?: Endpoint;
    prefix?: Name;
    signedInterestPolicy?: SignedInterestPolicy;
    signer?: Signer;
    verifier?: Verifier;
}

Hierarchy

  • CommonOptions
    • ControlCommandOptions

Properties

Consumer options.

Remarks

  • .describe defaults to "nfdmgmt".
  • .verifier is recommended.
endpoint?: Endpoint

Endpoint for communication.

Deprecated

Specify .cOpts.

prefix?: Name

NFD management prefix.

Default Value

getPrefix()

signedInterestPolicy?: SignedInterestPolicy

Signed Interest policy for the command Interest.

Default Value

Signed Interest shall contain SigNonce and SigTime.
signer?: Signer

Command Interest signer.

Default Value

Digest signing.
verifier?: Verifier

Data verifier.

Deprecated

Specify in .cOpts.verifier.