aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rfid-mifare.c
AgeCommit message (Collapse)AuthorFilesLines
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-2/+0
svn path=/trunk/; revision=45017
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-01-13Minor cleanup:Bill Meier1-73/+72
- Remove set but unused variable; - Fix indentation to match that specified by the Editor Modelines svn path=/trunk/; revision=40485
2011-11-14Remove uneeded #includes, forward refs & check_col();Bill Meier1-23/+18
tvb_reported_length_remaining() can return -1; Localize a variable. svn path=/trunk/; revision=39836
2011-11-06Attempt to fix the RCS ID.Guy Harris1-7/+7
NULL out blurbs that just give the field name. This is C code, so it shouldn't be executable; get rid of svn:executable. svn path=/trunk/; revision=39747
2011-11-06From Tyson Key via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6161Alexis La Goutte1-0/+246
Dissector for the NXP MiFare Protocol I've just finished writing a dissector for the NXP-proprietary MiFare Protocol, as used alongside ISO 14443-A by a popular range of contactless (not-so-smart) cards, and various emulations, variants and clones thereof. It currently supports all of the commands listed in http://www.nxp.com/documents/data_sheet/MF1S703x.pdf that also happen to be supported by LibNFC (http://code.google.com/p/libnfc/) - modulo the "NAK" and CRC bytes, since I haven't found examples of their usage in my USB traces, and I didn't want to hand-craft (probably incorrect) examples for testing. From me: * Fix Clang Warning * Remove trailing whitespace from lines; * Added packet-rfid-mifare to Makefile.common and CMakeLists.txt * Add Modelines information svn path=/trunk/; revision=39746