NDNts
    Preparing search index...

    Interface ServerChallengeResponse

    Result of challenge processing.

    interface ServerChallengeResponse {
        challengeStatus?: string;
        decrementRetry?: boolean;
        parameters?: ParameterKV;
        success?: boolean;
    }
    Index

    Properties

    challengeStatus?: string

    ChallengeStatus to convey to the client.

    "error"

    decrementRetry?: boolean

    If true, this request counts as one failed try and decrements remaining tries.

    false

    parameters?: ParameterKV

    Parameter key-value pairs to convey to the client.

    success?: boolean

    If true, challenge has succeeded and server will issue the certificate.

    false