]> the.earth.li Git - onak.git/blobdiff - keystructs.h
Create logfile for Debian package
[onak.git] / keystructs.h
index 3b46680bbd193d937091a3a99a04c11ecc0724e7..6c36bbec6e771ad04df2bd3ca73ee192fe2b7709 100644 (file)
@@ -88,6 +88,8 @@ struct openpgp_publickey {
  *     @parent: The key that lead us to this one for DFS/BFS.
  *     @sigs: A linked list of the signatures on this key.
  *     @gotsigs: A bool indicating if we've initialized the sigs element yet.
+ *     @disabled: If we shouldn't consider the key in calculations.
+ *     @revoked: If the key is revoked (and shouldn't be considered).
  */
 struct stats_key {
        uint64_t keyid;
@@ -97,6 +99,7 @@ struct stats_key {
        struct ll *signs;
        bool gotsigs;
        bool disabled;
+       bool revoked;
 };
 
 #endif /* __KEYSTRUCTS_H__ */