remove autogenerated file
[librfid] / src / rfid_protocol.c
index 1a4262a..71c52ff 100644 (file)
@@ -1,4 +1,4 @@
-/* librfid - layer 3 protocol handler 
+/* librfid - layer 4 protocol handler 
  * (C) 2005-2006 by Harald Welte <laforge@gnumonks.org>
  */
 
@@ -14,7 +14,7 @@
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
 #include <stdlib.h>
@@ -28,12 +28,13 @@ static const struct rfid_protocol *rfid_protocols[] = {
        [RFID_PROTOCOL_MIFARE_CLASSIC]  = &rfid_protocol_mfcl,
        [RFID_PROTOCOL_MIFARE_UL]       = &rfid_protocol_mful,
        [RFID_PROTOCOL_TCL]             = &rfid_protocol_tcl,
+       [RFID_PROTOCOL_TAGIT]           = &rfid_protocol_tagit,
 };
 
 struct rfid_protocol_handle *
 rfid_protocol_init(struct rfid_layer2_handle *l2h, unsigned int id)
 {
-       struct rfid_protocol *p;
+       const struct rfid_protocol *p;
        struct rfid_protocol_handle *ph = NULL;
 
        if (id >= ARRAY_SIZE(rfid_protocols))
@@ -106,6 +107,46 @@ rfid_protocol_close(struct rfid_protocol_handle *ph)
        return 0;
 }
 
+int
+rfid_protocol_getopt(struct rfid_protocol_handle *ph, int optname,
+                    void *optval, unsigned int *optlen)
+{
+       if (optname >> 16 == 0) {
+               unsigned char *optchar = optval;
+
+               switch (optname) {
+               default:
+                       return -EINVAL;
+                       break;
+               }
+       } else {
+               if (!ph->proto->fn.getopt)
+                       return -EINVAL;
+
+               return ph->proto->fn.getopt(ph, optname, optval, optlen);
+       }
+       return 0;
+}
+
+int
+rfid_protocol_setopt(struct rfid_protocol_handle *ph, int optname,
+                    const void *optval, unsigned int optlen)
+{
+       if (optname >> 16 == 0) {
+               switch (optname) {
+               default:
+                       return -EINVAL;
+                       break;
+               }
+       } else {
+               if (!ph->proto->fn.setopt)
+                       return -EINVAL;
+
+               return ph->proto->fn.setopt(ph, optname, optval, optlen);
+       }
+       return 0;
+}
+
 char *rfid_protocol_name(struct rfid_protocol_handle *ph)
 {
        return ph->proto->name;