X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=keystructs.h;h=6c36bbec6e771ad04df2bd3ca73ee192fe2b7709;hb=3b764b8e96bfcd76f36a76b58ac8ce812cff6ec1;hp=e145fdf7af1b7a15ff744123ef3b6cff18f8162c;hpb=e3ee7975fc8f8b343390272663b8c644030b17c1;p=onak.git diff --git a/keystructs.h b/keystructs.h index e145fdf..6c36bbe 100644 --- a/keystructs.h +++ b/keystructs.h @@ -88,14 +88,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__ */