From b0fef13efe84d8601a9496098429b4a080e20c9e Mon Sep 17 00:00:00 2001 From: laforge Date: Sun, 29 May 2005 18:05:31 +0000 Subject: move librfid to new location in repository git-svn-id: https://svn.gnumonks.org/trunk/librfid@1181 e0336214-984f-0b4b-a45f-81c69e1f0ede --- rfid_protocol.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 rfid_protocol.c (limited to 'rfid_protocol.c') diff --git a/rfid_protocol.c b/rfid_protocol.c new file mode 100644 index 0000000..33aa10c --- /dev/null +++ b/rfid_protocol.c @@ -0,0 +1,59 @@ +/* librfid - layer 3 protocol handler + * (C) 2005 by Harald Welte + */ + +#include +#include + +#include +#include + +static struct rfid_protocol *rfid_protocol_list; + +struct rfid_protocol_handle * +rfid_protocol_init(struct rfid_layer2_handle *l2h, unsigned int id) +{ + struct rfid_protocol *p; + + for (p = rfid_protocol_list; p; p = p->next) + if (p->id == id) + return p->fn.init(l2h); + + return NULL; +} + +int +rfid_protocol_open(struct rfid_protocol_handle *ph) +{ + return ph->proto->fn.open(ph); +} + +int +rfid_protocol_transcieve(struct rfid_protocol_handle *ph, + const unsigned char *tx_buf, unsigned int len, + unsigned char *rx_buf, unsigned int *rx_len, + unsigned int timeout, unsigned int flags) +{ + return ph->proto->fn.transcieve(ph, tx_buf, len, rx_buf, rx_len, + timeout, flags); +} + +int rfid_protocol_fini(struct rfid_protocol_handle *ph) +{ + return ph->proto->fn.fini(ph); +} + +int +rfid_protocol_close(struct rfid_protocol_handle *ph) +{ + return ph->proto->fn.close(ph); +} + +int +rfid_protocol_register(struct rfid_protocol *p) +{ + p->next = rfid_protocol_list; + rfid_protocol_list = p; + + return 0; +} -- cgit v1.2.3