X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=keystructs.h;h=24799eb5101ffdcb9dbf4de7d84c6f753dad4caf;hb=81e4d3b012b8c17ab17215a2f904a5742e41886d;hp=3b46680bbd193d937091a3a99a04c11ecc0724e7;hpb=6a721665f41611f80cb878237b5d7fa650ccbe20;p=onak.git diff --git a/keystructs.h b/keystructs.h index 3b46680..24799eb 100644 --- a/keystructs.h +++ b/keystructs.h @@ -4,6 +4,8 @@ * Jonathan McDowell * * Copyright 2002 Project Purple + * + * $Id: keystructs.h,v 1.7 2003/06/08 21:11:01 noodles Exp $ */ #ifndef __KEYSTRUCTS_H__ @@ -88,6 +90,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 +101,7 @@ struct stats_key { struct ll *signs; bool gotsigs; bool disabled; + bool revoked; }; #endif /* __KEYSTRUCTS_H__ */