diff options
author | Ben Kibbey <[email protected]> | 2015-04-17 01:05:01 +0000 |
---|---|---|
committer | Ben Kibbey <[email protected]> | 2015-08-15 22:19:27 +0000 |
commit | 6dd24c3c6133ec54f75abd056191a8027fe01de0 (patch) | |
tree | b5a325d3120370417498981db36cc3c1b3293cae /src/gpgme.h.in | |
parent | Add gpgme_set/get_status_cb(). (diff) | |
download | gpgme-6dd24c3c6133ec54f75abd056191a8027fe01de0.tar.gz gpgme-6dd24c3c6133ec54f75abd056191a8027fe01de0.zip |
Parse the INQUIRE_MAXLEN status message.
* src/gpgme.h.in: (gpgme_status_code_t): Add INQUIRE_MAXLEN.
* src/status-table.c (status_table_s): Ditto.
* src/genkey.c (genkey_status_handler): Parse INQUIRE_MAXLEN.
* src/decrypt.c (_gpgme_decrypt_status_handler): Ditto.
* src/sign.c (_gpgme_sign_status_handler): Ditto.
This status message informs the client of the maximum length of an
inquired line. It is sent from gpg and forwarded to the client via
gpgme_status_cb_t.
Diffstat (limited to 'src/gpgme.h.in')
-rw-r--r-- | src/gpgme.h.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gpgme.h.in b/src/gpgme.h.in index ffcc7bac..8255e637 100644 --- a/src/gpgme.h.in +++ b/src/gpgme.h.in @@ -544,7 +544,8 @@ typedef enum GPGME_STATUS_PINENTRY_LAUNCHED = 88, GPGME_STATUS_ATTRIBUTE = 89, GPGME_STATUS_BEGIN_SIGNING = 90, - GPGME_STATUS_KEY_NOT_CREATED = 91 + GPGME_STATUS_KEY_NOT_CREATED = 91, + GPGME_STATUS_INQUIRE_MAXLEN = 92 } gpgme_status_code_t; |