diff options
author | Werner Koch <[email protected]> | 2015-11-12 15:02:35 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-11-12 15:44:00 +0000 |
commit | e3c48335f9c5081c6080bceafa7a04140403427a (patch) | |
tree | ea08f4cb8b9c3139f7de57d47825ab257f69da90 /common/status.h | |
parent | dirmngr: Do not block during ADNS calls. (diff) | |
download | gnupg-e3c48335f9c5081c6080bceafa7a04140403427a.tar.gz gnupg-e3c48335f9c5081c6080bceafa7a04140403427a.zip |
gpg: Print export statistics to the status-fd.
* common/status.h (STATUS_EXPORT_RES): New.
* g10/main.h (export_stats_t): New.
* g10/export.c (export_stats_s): New.
(export_new_stats, export_release_stats): New.
(export_print_stats): New.
(export_pubkeys, export_seckeys, export_secsubkeys)
(export_pubkey_buffer, do_export): Add arg "stats".
(do_export_stream): Add arg stats and update it.
* g10/gpg.c (main) <aExport, aExportSecret, aExportSecretSub>: Create,
pass, and print a stats object to the export function calls.
* g10/export.c (export_pubkeys_stream): Remove unused function.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'common/status.h')
-rw-r--r-- | common/status.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/status.h b/common/status.h index 76b1b304f..340916719 100644 --- a/common/status.h +++ b/common/status.h @@ -55,12 +55,15 @@ enum STATUS_GOODMDC, STATUS_BADMDC, STATUS_ERRMDC, + STATUS_IMPORTED, STATUS_IMPORT_OK, STATUS_IMPORT_PROBLEM, STATUS_IMPORT_RES, STATUS_IMPORT_CHECK, + STATUS_EXPORT_RES, + STATUS_FILE_START, STATUS_FILE_DONE, STATUS_FILE_ERROR, |