diff options
author | NIIBE Yutaka <[email protected]> | 2017-09-20 01:06:43 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2017-09-20 01:06:43 +0000 |
commit | 2396055c096884d521c26b76f26263a146207c24 (patch) | |
tree | 08782084a7bf005b1774723b00a20aa15e609da3 /scd/apdu.h | |
parent | common: Accept the Z-suffix for yymmddThhmmssZ format. (diff) | |
download | gnupg-2396055c096884d521c26b76f26263a146207c24.tar.gz gnupg-2396055c096884d521c26b76f26263a146207c24.zip |
scd: Distinguish cancel by user and protocol error.
* scd/apdu.h (SW_HOST_CANCELLED): New.
* scd/apdu.c (host_sw_string): Support SW_HOST_CANCELLED.
(pcsc_error_to_sw): Return SW_HOST_CANCELLED for PCSC_E_CANCELLED.
* scd/iso7816.c (map_sw): Return GPG_ERR_INV_RESPONSE for
SW_HOST_ABORTED and GPG_ERR_CANCELED for SW_HOST_CANCELLED.
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'scd/apdu.h')
-rw-r--r-- | scd/apdu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scd/apdu.h b/scd/apdu.h index 6751e8c9b..8a0d4bda8 100644 --- a/scd/apdu.h +++ b/scd/apdu.h @@ -71,7 +71,8 @@ enum { SW_HOST_NO_READER = 0x1000c, SW_HOST_ABORTED = 0x1000d, SW_HOST_NO_PINPAD = 0x1000e, - SW_HOST_ALREADY_CONNECTED = 0x1000f + SW_HOST_ALREADY_CONNECTED = 0x1000f, + SW_HOST_CANCELLED = 0x10010 }; struct dev_list; |