]> the.earth.li Git - onak.git/blobdiff - keystructs.h
cscvs to tla changeset 140
[onak.git] / keystructs.h
index ec1d55556719b1f758c2d660095bdc1506c6a47c..24799eb5101ffdcb9dbf4de7d84c6f753dad4caf 100644 (file)
@@ -4,6 +4,8 @@
  * Jonathan McDowell <noodles@earth.li>
  *
  * Copyright 2002 Project Purple
+ *
+ * $Id: keystructs.h,v 1.7 2003/06/08 21:11:01 noodles Exp $
  */
 
 #ifndef __KEYSTRUCTS_H__
@@ -88,13 +90,18 @@ 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;
        int colour;
        uint64_t parent;
        struct ll *sigs;
+       struct ll *signs;
        bool gotsigs;
+       bool disabled;
+       bool revoked;
 };
 
 #endif /* __KEYSTRUCTS_H__ */