summaryrefslogtreecommitdiff
path: root/rfid_layer2.c
diff options
context:
space:
mode:
Diffstat (limited to 'rfid_layer2.c')
-rw-r--r--rfid_layer2.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/rfid_layer2.c b/rfid_layer2.c
index ef59bad..c1ab6a6 100644
--- a/rfid_layer2.c
+++ b/rfid_layer2.c
@@ -46,12 +46,13 @@ rfid_layer2_open(struct rfid_layer2_handle *ph)
int
rfid_layer2_transcieve(struct rfid_layer2_handle *ph,
+ enum rfid_frametype frametype,
const unsigned char *tx_buf, unsigned int len,
unsigned char *rx_buf, unsigned int *rx_len,
u_int64_t timeout, unsigned int flags)
{
- return ph->l2->fn.transcieve(ph, tx_buf, len, rx_buf, rx_len,
- timeout, flags);
+ return ph->l2->fn.transcieve(ph, frametype, tx_buf, len, rx_buf,
+ rx_len, timeout, flags);
}
int rfid_layer2_fini(struct rfid_layer2_handle *ph)
personal git repositories of Harald Welte. Your mileage may vary