X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=keystructs.h;h=6c36bbec6e771ad04df2bd3ca73ee192fe2b7709;hb=a047e3e158d560af079bec920460711d8222317c;hp=42f097118341b7a6b3e2e33263629243568c5817;hpb=0f4971d043c38bae1bfb95201622a1405110f899;p=onak.git diff --git a/keystructs.h b/keystructs.h index 42f0971..6c36bbe 100644 --- a/keystructs.h +++ b/keystructs.h @@ -4,8 +4,6 @@ * Jonathan McDowell * * Copyright 2002 Project Purple - * - * $Id: keystructs.h,v 1.6 2003/06/04 20:57:09 noodles Exp $ */ #ifndef __KEYSTRUCTS_H__ @@ -90,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; @@ -99,6 +99,7 @@ struct stats_key { struct ll *signs; bool gotsigs; bool disabled; + bool revoked; }; #endif /* __KEYSTRUCTS_H__ */