diff options
Diffstat (limited to '')
-rw-r--r-- | g10/gpg.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -59,10 +59,13 @@ struct server_local_s; struct dirmngr_local_s; typedef struct dirmngr_local_s *dirmngr_local_t; -/* Object used to describe a keyblok node. */ +/* Object used to describe a keyblock node. */ typedef struct kbnode_struct *KBNODE; /* Deprecated use kbnode_t. */ typedef struct kbnode_struct *kbnode_t; +/* The handle for keydb operations. */ +typedef struct keydb_handle *KEYDB_HANDLE; + /* TOFU database meta object. */ struct tofu_dbs_s; typedef struct tofu_dbs_s *tofu_dbs_t; @@ -94,6 +97,8 @@ struct server_control_s int batch_updated_wanted; } tofu; + /* This is used to cache a key data base handle. */ + KEYDB_HANDLE cached_getkey_kdb; }; |