aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lon.c
AgeCommit message (Collapse)AuthorFilesLines
2013-01-31Use '#if 0 ... #endif' rather than /** ... **/ to comment outBill Meier1-2/+2
unused hf[] entries (which I should have done in the first place). svn path=/trunk/; revision=47391
2013-01-26Fix various instances of unused hf[] entries foundBill Meier1-1/+3
by checkhf. svn path=/trunk/; revision=47312
2012-11-17Fix tpyoes.Guy Harris1-2/+2
svn path=/trunk/; revision=46059
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-1/+1
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-07-28Use the _vs suffix for value_string variables consistently. There was aMartin Mathieson1-14/+14
clash between the value_string 'addr_fmt' and where the raw value was parsed. svn path=/trunk/; revision=44096
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2011-10-24Fix encoding arg for various fcn calls:Bill Meier1-9/+9
- proto_tree_add_bits_item - proto_tree_add_bits_ret_val - proto_tree_add_bitmask - tvb_get_bits - tvb_get_bits16 - tvb_get_bits24 - tvb_get_bits32 - tvb_get_bits64 svn path=/trunk/; revision=39539
2011-07-21From Daniel Willmann: packet-lon.c: Fix Multicast decoding when M_Length is ↵Bill Meier1-4/+6
zero. In case M_Length is 0 the M_List field does not exist. The attached patch fixes this and it also changes the names of the M_List and M_List length field to more general names. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6149 svn path=/trunk/; revision=38158
2011-07-21From Daniel Willmann: Visual improvements for the LON (EIA-709.1) dissector.Bill Meier1-5/+5
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6148 svn path=/trunk/; revision=38157
2011-06-07From Daniel Willmann: Lontalk protocol (EIA-709.1)Bill Meier1-0/+722
Attached is a dissector for the Lontalk protocol (EIA-709.1). This dissector registers as a subdissector of the CN/IP protocol. Some code (mostly definitions) were taken from Bug #2252 (http://bugs.wireshark.org/bugzilla/attachment.cgi?id=4562) From me: minor mostly cosmetic changes. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5909 svn path=/trunk/; revision=37599