aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-vmlab.c
AgeCommit message (Collapse)AuthorFilesLines
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-06-09Do not use BASE_NONE for FT_*INT* types.Chris Maynard1-1/+1
svn path=/trunk/; revision=43179
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-1/+1
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier1-3/+3
non-autogenerated epan/dissectors: Specifically: Replace FALSE|0 and TRUE|1 by ENC_BIG_ENDIAN|ENC_LITTLE_ENDIAN as the encoding parameter for proto_tree_add_item() calls which directly reference an item in hf[] which has a type of: FT_UINT8 FT_UINT16 FT_UINT24 FT_UINT32 FT_UINT64 FT_INT8 FT_INT16 FT_INT24 FT_INT32 FT_INT64 FT_FLOAT FT_DOUBLE svn path=/trunk/; revision=39288
2011-05-12Delete eth_addr; it was assigned a value but never used. Fixes Coverity 1070.Chris Maynard1-2/+0
svn path=/trunk/; revision=37087
2011-01-16There's no need to pass the result of tvb_get_ptr() as the 'value' inJeff Morriss1-3/+3
proto_tree_add_*(): just use proto_tree_add_item(). Replace some tvb_get_ptr()s with tvb_get_ephemeral_string() or tvb_get_const_stringz(). Use tvb_memeql() & tvb_memcmp(). svn path=/trunk/; revision=35558
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-1/+1
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2010-09-21As suggested by Kovarththanan Rajaratnam in ↵Jeff Morriss1-20/+20
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3548 : Clean up hf fields some more: mostly removing leading and trailing spaces from names and blurbs. svn path=/trunk/; revision=34165
2010-04-05As requested by David Aggeler:Bill Meier1-4/+4
About hf_, in { &hf_vmlab_flags_fragment, { "More Fragments", "vmlab.fragment", FT_UINT8, BASE_HEX, VALS(fragment_vals), 0x04, NULL, HFILL }}, I'd like to keep BASE_NONE to avoid the number to show in brackets. svn path=/trunk/; revision=32391
2010-04-05Remove 'if (tree)' around code so that ethertype always gets called with ↵Bill Meier1-44/+40
correct values. svn path=/trunk/; revision=32386
2010-04-05Cleanup:Bill Meier1-80/+72
- hf[] array:fix some "Display" fields: eg: FT_BOOLEAN to BASE_HEX - There's no prefs: thus no need for prefs_register_protocol - whitespace; ... svn path=/trunk/; revision=32385
2010-04-05Put volatile back - without it, the compiler warns you.Guy Harris1-1/+1
svn path=/trunk/; revision=32384
2010-04-05Remove volatileKovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=32383
2010-04-05Get rid of unused variable.Guy Harris1-2/+0
svn path=/trunk/; revision=32382
2010-04-05From David Aggeler:Anders Broman1-0/+199
Support for VMware Lab Manager Host Spanning https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4186 svn path=/trunk/; revision=32380