X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/576754568dc383e78065e88e05eeb2d078524f9c..bff92fa7e9583ebaa3de745aba04c66b132c849e:/keystructs.h diff --git a/keystructs.h b/keystructs.h index 42f0971..24799eb 100644 --- a/keystructs.h +++ b/keystructs.h @@ -5,7 +5,7 @@ * * Copyright 2002 Project Purple * - * $Id: keystructs.h,v 1.6 2003/06/04 20:57:09 noodles Exp $ + * $Id: keystructs.h,v 1.7 2003/06/08 21:11:01 noodles Exp $ */ #ifndef __KEYSTRUCTS_H__ @@ -90,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; @@ -99,6 +101,7 @@ struct stats_key { struct ll *signs; bool gotsigs; bool disabled; + bool revoked; }; #endif /* __KEYSTRUCTS_H__ */