* @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;
struct ll *signs;
bool gotsigs;
bool disabled;
+ bool revoked;
};
#endif /* __KEYSTRUCTS_H__ */