mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
keyboxd: New command TRANSACTION.
* kbx/backend-sqlite.c (be_sqlite_rollback): New. (be_sqlite_commit): New. (be_sqlite_search): Take care of global transactions. (be_sqlite_store): Ditto. (be_sqlite_delete): Ditto. * kbx/frontend.c (kbxd_rollback, kbxd_commit): New. * kbx/keyboxd.h (opt): Add vars for transactions. * kbx/kbxserver.c (struct server_local_s): Add fields next_session and client_pid. (session_list): New var. (cmd_transaction): New. (register_commands): Register command. (kbxd_start_command_handler): Store pids and track sessions. Do a final rollback. -- This command is currently an experiment to allow a client to run everything in one session. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
b19a60c6f7
commit
c2b14f5d68
6 changed files with 230 additions and 10 deletions
|
@ -171,6 +171,8 @@ void be_sqlite_release_resource (ctrl_t ctrl, backend_handle_t hd);
|
|||
gpg_error_t be_sqlite_init_local (backend_handle_t backend_hd,
|
||||
db_request_part_t part);
|
||||
void be_sqlite_release_local (be_sqlite_local_t ctx);
|
||||
gpg_error_t be_sqlite_rollback (void);
|
||||
gpg_error_t be_sqlite_commit (void);
|
||||
gpg_error_t be_sqlite_search (ctrl_t ctrl, backend_handle_t hd,
|
||||
db_request_t request,
|
||||
KEYDB_SEARCH_DESC *desc, unsigned int ndesc);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue