aboutsummaryrefslogtreecommitdiffstats
path: root/src/ops.h
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2018-04-18 13:20:35 +0000
committerWerner Koch <[email protected]>2018-04-18 13:20:35 +0000
commit65479fe7b871ad6237d5a8959b73afcc7db784da (patch)
tree7e06281e27addc3a18a6a5e184f69e5c44c82278 /src/ops.h
parentcore: Fix possible compliance mode detection error. (diff)
downloadgpgme-65479fe7b871ad6237d5a8959b73afcc7db784da.tar.gz
gpgme-65479fe7b871ad6237d5a8959b73afcc7db784da.zip
core: Add 'is_mime' flags to the verify and decrypt results.
* src/op-support.c (_gpgme_parse_plaintext): Add arg r_mime. * src/decrypt.c (_gpgme_decrypt_status_handler): Ser mime flag. * src/verify.c (_gpgme_verify_status_handler): Ditto. * src/gpgme.h.in (gpgme_op_verify_result_t): Append fields 'is_mime' and '_unused'. (gpgme_op_decrypt_result_t): New field 'is_mime'. Shrink '_unused'. * tests/run-decrypt.c (print_result): Print MIME flag. * tests/run-verify.c (print_result): Ditto. -- Note that this flag (Liternal Data packet's 'm' mode) is only specified in RFC-4880bis. To use it you currently need to add "rfc4880bis" to the the gpg.conf. Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'src/ops.h')
-rw-r--r--src/ops.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ops.h b/src/ops.h
index cc61dc4f..5955454c 100644
--- a/src/ops.h
+++ b/src/ops.h
@@ -68,8 +68,8 @@ gpgme_error_t _gpgme_parse_inv_recp (char *args, int for_signing,
gpgme_invalid_key_t *key);
/* Parse the PLAINTEXT status line in ARGS and return the result in
- FILENAMEP. */
-gpgme_error_t _gpgme_parse_plaintext (char *args, char **filenamep);
+ FILENAMEP and R_MIME. */
+gpgme_error_t _gpgme_parse_plaintext (char *args, char **filenamep,int *r_mime);
/* Parse a FAILURE status line and return the error code. ARGS is
modified to contain the location part. */