using libnfc 1.5.1

git-svn-id: https://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard@657 96b47cad-a561-4643-ad3b-153ac7d7599c
This commit is contained in:
frankmorgner
2011-12-09 10:55:14 +00:00
parent 07af155110
commit 892efc9922
2 changed files with 14 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2010 Frank Morgner
* Copyright (C) 2011 Frank Morgner
*
* This file is part of pcsc-relay.
*
@@ -30,6 +30,12 @@ struct lnfc_data {
};
static struct timeval transmit_timeout = {
1, /* seconds */
0, /* microseconds */
};
static size_t get_historical_bytes(unsigned char *atr, size_t atrlen,
unsigned char **hb)
{
@@ -181,7 +187,7 @@ static int lnfc_receive_capdu(driver_data_t *driver_data,
// Receive external reader command through target
if (!nfc_target_receive_bytes(data->pndTarget, data->abtCapdu, &data->szCapduLen)) {
if (!nfc_target_receive_bytes(data->pndTarget, data->abtCapdu, &data->szCapduLen, &transmit_timeout)) {
ERROR ("nfc_target_receive_bytes: %s\n", nfc_strerror(data->pndTarget));
return 0;
}
@@ -209,7 +215,7 @@ static int lnfc_send_rapdu(driver_data_t *driver_data,
return 0;
if (!nfc_target_send_bytes(data->pndTarget, rapdu, len)) {
if (!nfc_target_send_bytes(data->pndTarget, rapdu, len, &transmit_timeout)) {
ERROR ("nfc_target_send_bytes: %s\n", nfc_strerror(data->pndTarget));
return 0;
}