diff options
author | Werner Koch <[email protected]> | 2006-12-21 19:40:00 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2006-12-21 19:40:00 +0000 |
commit | 12ca74c836ccacf79f2f193afac334377e41995e (patch) | |
tree | 3a70382f306fe0602b8c9acbd9e995336dc1f097 /g10/options.h | |
parent | The keypad is now also used for OpenPGP signing keys. (diff) | |
download | gnupg-12ca74c836ccacf79f2f193afac334377e41995e.tar.gz gnupg-12ca74c836ccacf79f2f193afac334377e41995e.zip |
Started to code a --server mode.
It is far from being ready!
Diffstat (limited to '')
-rw-r--r-- | g10/options.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/g10/options.h b/g10/options.h index 530eac206..8bc81b943 100644 --- a/g10/options.h +++ b/g10/options.h @@ -266,6 +266,11 @@ struct { #define DBG_EXTPROG_VALUE 1024 /* debug external program calls */ #define DBG_CARD_IO_VALUE 2048 /* debug smart card I/O. */ +/* Fixme: For now alias this value. */ +#define DBG_ASSUAN_VALUE DBG_EXTPROG_VALUE + + +/* Tests for the debugging flags. */ #define DBG_PACKET (opt.debug & DBG_PACKET_VALUE) #define DBG_CIPHER (opt.debug & DBG_CIPHER_VALUE) #define DBG_FILTER (opt.debug & DBG_FILTER_VALUE) @@ -274,6 +279,7 @@ struct { #define DBG_HASHING (opt.debug & DBG_HASHING_VALUE) #define DBG_EXTPROG (opt.debug & DBG_EXTPROG_VALUE) #define DBG_CARD_IO (opt.debug & DBG_CARD_IO_VALUE) +#define DBG_ASSUAN (opt.debug & DBG_ASSUAN_VALUE) /* FIXME: We need to check whey we did not put this into opt. */ #define DBG_MEMORY memory_debug_mode |