Re: [Qemu-devel] [PATCH v23 05/11] ccid: add passthru card device

2011-03-28 Thread Jes Sorensen
On 03/23/11 14:19, Alon Levy wrote: The passthru ccid card is a device sitting on the usb-ccid bus and using a chardevice to communicate with a remote device using the VSCard protocol defined in libcacard/vscard_common.h Usage docs available in following patch in docs/ccid.txt

Re: [Qemu-devel] [PATCH v23 05/11] ccid: add passthru card device

2011-03-28 Thread Alon Levy
On Mon, Mar 28, 2011 at 02:08:45PM +0200, Jes Sorensen wrote: On 03/23/11 14:19, Alon Levy wrote: The passthru ccid card is a device sitting on the usb-ccid bus and using a chardevice to communicate with a remote device using the VSCard protocol defined in libcacard/vscard_common.h

Re: [Qemu-devel] [PATCH v23 05/11] ccid: add passthru card device

2011-03-28 Thread Jes Sorensen
On 03/28/11 14:14, Alon Levy wrote: +static void ccid_card_vscard_send_init(PassthruState *s) +{ +VSCMsgInit msg = { +.version = htonl(VSCARD_VERSION), +.magic = VSCARD_MAGIC, +.capabilities = {0} +}; + If this goes over the wire, don't

[Qemu-devel] [PATCH v23 05/11] ccid: add passthru card device

2011-03-23 Thread Alon Levy
The passthru ccid card is a device sitting on the usb-ccid bus and using a chardevice to communicate with a remote device using the VSCard protocol defined in libcacard/vscard_common.h Usage docs available in following patch in docs/ccid.txt Signed-off-by: Alon Levy al...@redhat.com ---