diff options
Diffstat (limited to 'src/libpts/plugins/imv_attestation/attest_db.h')
-rw-r--r-- | src/libpts/plugins/imv_attestation/attest_db.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/libpts/plugins/imv_attestation/attest_db.h b/src/libpts/plugins/imv_attestation/attest_db.h index a20023fcd..d0a48d844 100644 --- a/src/libpts/plugins/imv_attestation/attest_db.h +++ b/src/libpts/plugins/imv_attestation/attest_db.h @@ -160,9 +160,9 @@ struct attest_db_t { void (*set_relative)(attest_db_t *this); /** - * Set the package security state + * Set the package security or blacklist state */ - void (*set_security)(attest_db_t *this, os_package_state_t security); + void (*set_package_state)(attest_db_t *this, os_package_state_t package_state); /** * Set the sequence number @@ -193,6 +193,11 @@ struct attest_db_t { void (*list_products)(attest_db_t *this); /** + * List all directories stored in the database + */ + void (*list_directories)(attest_db_t *this); + + /** * List selected files stored in the database */ void (*list_files)(attest_db_t *this); @@ -223,6 +228,11 @@ struct attest_db_t { void (*list_measurements)(attest_db_t *this); /** + * List sessions stored in the database + */ + void (*list_sessions)(attest_db_t *this); + + /** * Add an entry to the database */ bool (*add)(attest_db_t *this); |