aboutsummaryrefslogtreecommitdiff
path: root/src/include/anastasis_database_plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/anastasis_database_plugin.h')
-rw-r--r--src/include/anastasis_database_plugin.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/anastasis_database_plugin.h b/src/include/anastasis_database_plugin.h
index 7ad47ca..069d0d9 100644
--- a/src/include/anastasis_database_plugin.h
+++ b/src/include/anastasis_database_plugin.h
@@ -584,13 +584,15 @@ struct ANASTASIS_DatabasePlugin
584 * @param cls closure 584 * @param cls closure
585 * @param truth_uuid identification of the challenge which the code corresponds to 585 * @param truth_uuid identification of the challenge which the code corresponds to
586 * @param hashed_code code which the user provided and wants to verify 586 * @param hashed_code code which the user provided and wants to verify
587 * @param[out] satisfied set to true if the challenge is set to satisfied
587 * @return transaction status 588 * @return transaction status
588 */ 589 */
589 enum ANASTASIS_DB_CodeStatus 590 enum ANASTASIS_DB_CodeStatus
590 (*verify_challenge_code)( 591 (*verify_challenge_code)(
591 void *cls, 592 void *cls,
592 const struct ANASTASIS_CRYPTO_TruthUUIDP *truth_uuid, 593 const struct ANASTASIS_CRYPTO_TruthUUIDP *truth_uuid,
593 const struct GNUNET_HashCode *hashed_code); 594 const struct GNUNET_HashCode *hashed_code,
595 bool *satisfied);
594 596
595 597
596 /** 598 /**