diff options
author | Werner Koch <[email protected]> | 2020-01-02 13:21:12 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2020-01-02 13:21:12 +0000 |
commit | f4da1455c7ab858ea9007d0813774c6d04cd4576 (patch) | |
tree | 0380bf55daa9295f2a650875a3eb7bde6b8072da /kbx/frontend.h | |
parent | Update wk's signing key (diff) | |
download | gnupg-f4da1455c7ab858ea9007d0813774c6d04cd4576.tar.gz gnupg-f4da1455c7ab858ea9007d0813774c6d04cd4576.zip |
kbx: Initial support for an SQLite backend
* kbx/backend-sqlite.c: New.
* kbx/Makefile.am (keyboxd_SOURCES): Add it.
(keyboxd_CFLAGS, keyboxd_LDADD): Add SQLite flags.
* kbx/backend.h (enum database_types): Add DB_TYPE_SQLITE.
(be_sqlite_local_t): New typedef.
(struct db_request_part_s): Add field besqlite.
* kbx/backend-support.c (strdbtype): Add string for DB_TYPE_SQLITE.
(be_generic_release_backend): Support SQLite.
(be_release_request): Ditto.
(be_find_request_part): Ditto.
(is_x509_blob): Rename to ...
(be_is_x509_blob): this and make global.
* kbx/frontend.c (kbxd_set_database): Detect ".db" suffix and use that
for SQLite.
(kbxd_search): Support SQLite
(kbxd_store): Ditto.
(kbxd_delete): Ditto.
* kbx/frontend.h (kbxd_store_modes): Move to ...
* kbx/keyboxd.h (enum kbxd_store_modes): here.
* kbx/keyboxd.c (main): USe pubring.db for now. This is a temporary
hack.
* kbx/backend-kbx.c (be_kbx_delete): Remove unused var cert.
--
Take care: This is not finished and in particular filling the database
takes quite long.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'kbx/frontend.h')
-rw-r--r-- | kbx/frontend.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/kbx/frontend.h b/kbx/frontend.h index 20565215a..d38d442f0 100644 --- a/kbx/frontend.h +++ b/kbx/frontend.h @@ -23,14 +23,6 @@ #include "keybox-search-desc.h" -enum kbxd_store_modes - { - KBXD_STORE_AUTO = 0, /* Update or insert. */ - KBXD_STORE_INSERT, /* Allow only inserts. */ - KBXD_STORE_UPDATE /* Allow only updates. */ - }; - - gpg_error_t kbxd_set_database (ctrl_t ctrl, const char *filename_arg, int readonly); |