diff options
Diffstat (limited to 'src/assuan-defs.h')
-rw-r--r-- | src/assuan-defs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/assuan-defs.h b/src/assuan-defs.h index 63f0d10..3cdbc92 100644 --- a/src/assuan-defs.h +++ b/src/assuan-defs.h @@ -87,6 +87,7 @@ struct assuan_context_s unsigned int no_waitpid : 1; unsigned int confidential : 1; unsigned int no_fixsignals : 1; + unsigned int convey_comments : 1; } flags; /* If set, this is called right before logging an I/O line. */ @@ -281,7 +282,8 @@ gpg_error_t _assuan_write_line (assuan_context_t ctx, const char *prefix, /*-- client.c --*/ gpg_error_t _assuan_read_from_server (assuan_context_t ctx, - assuan_response_t *okay, int *off); + assuan_response_t *okay, int *off, + int convey_comments); /*-- assuan-error.c --*/ |