Enum caprock_validation_flags
Defined in File basics.h
Enum Documentation
-
enum caprock_validation_flags
Flags specify how to treat the iterator. The function cannot itself order tokens, so if the iterator produces out-of-order tokens, those can be ignored or the function can error. Similarly, gaps in the token chain may be ignored, or produce errors.
Values:
-
enumerator CIF_NONE
Just consume tokens in the order the iterator presents them. Gaps in the chain produce errors, and tokens with an invalid signature produce errors.
-
enumerator CIF_IGNORE_OUT_OF_ORDER
Skip/ignore tokens that ate provided out of order.
-
enumerator CIF_IGNORE_GAPS
Do not error when gaps in the token chain are detected.
-
enumerator CIF_IGNORE_FAILED_SIG
Do not error when tokens with a failed signature are encountered.
-
enumerator CIF_ALL
Combine all of the above flags.
-
enumerator CIF_NONE