diff options
-rw-r--r-- | README | 8 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 8 insertions, 2 deletions
@@ -477,11 +477,17 @@ cac.c - card type emulator for CAC cards vcard_emul.h - virtual card emulator service definitions. vcard_emul_nss.c - virtual card emulator implementation for nss. vscclient.c - socket connection to guest qemu usb driver. -vscard_common.h - common header with the guest qemu usb driver. +vscard_common.h - common header with the protocol for the guest qemu usb driver. mutex.h - header file for machine independent mutexes. Makefile - basic Makefile that needs to be changed to autoconf someday. link_test.c - static test to make sure all the symbols are properly defined. +VSCard protocol (Virtual Smart Card protocol) +============================================= +Defined in http://wiki.qemu.org/Features/Smartcard + +The definition there is used to create vscard_common.h + Running with Qemu usb-ccid: =========================== diff --git a/configure.ac b/configure.ac index 5b12fc3..5436371 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ([2.60]) m4_define([CAC_MAJOR], 0) m4_define([CAC_MINOR], 1) -m4_define([CAC_MICRO], 1) +m4_define([CAC_MICRO], 2) AC_INIT(libcacard, [CAC_MAJOR.CAC_MINOR.CAC_MICRO], [], libcacard) |