* C-API: Added vlev validate level parameter to candidate_commit
* `vlev` : validate level
This commit is contained in:
parent
a8e13047fc
commit
034ab632f1
13 changed files with 98 additions and 60 deletions
|
|
@ -40,6 +40,16 @@
|
|||
#ifndef _CLIXON_VALIDATE_H_
|
||||
#define _CLIXON_VALIDATE_H_
|
||||
|
||||
/*
|
||||
* Types
|
||||
*/
|
||||
/* Validation level at commit */
|
||||
enum validate_level_t {
|
||||
VL_FULL = 0, /* Do full RFC 7950 validation , 0 : backward-compatible */
|
||||
VL_NONE, /* Do not do any validation */
|
||||
};
|
||||
typedef enum validate_level_t validate_level;
|
||||
|
||||
/*
|
||||
* Prototypes
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue