aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-roofnet.c
AgeCommit message (Collapse)AuthorFilesLines
2013-09-09expert_add_info_format_text -> expert_add_info_formatMichael Mann1-1/+1
svn path=/trunk/; revision=51852
2013-07-06Fix display filter errors caught by checkfiltername.plMichael Mann1-3/+3
svn path=/trunk/; revision=50399
2013-06-14Remove check_col() and the occasional tree.Michael Mann1-9/+5
svn path=/trunk/; revision=49921
2013-05-27Batch of filterable expert infosMichael Mann1-3/+11
svn path=/trunk/; revision=49600
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=47390
2013-01-26Comment out cases of unused hf array entries found by checkhf.Bill Meier1-1/+3
svn path=/trunk/; revision=47302
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-04-18Fix some: 'cast discards qualifiers from pointer target type' warningsJakub Zawadzki1-2/+2
- Add const qualifier - Remove some strange casts svn path=/trunk/; revision=42131
2011-10-25Fix encoding arg for ptvcursor_add() and ptvcursor_add_noadvance() function ↵Bill Meier1-14/+14
calls. svn path=/trunk/; revision=39566
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-08-08Remove unneeded #includes: proto.h,tvbuff.h,value_string.h,stdlib.h,...Bill Meier1-2/+0
svn path=/trunk/; revision=38413
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-4/+4
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
2009-11-17Remove the address operator from value_string arrays fed to VALS()Gerasimos Dimitriadis1-2/+2
svn path=/trunk/; revision=30995
2009-08-16Switch a bunch of dissectors over to using tvb_new_subset_remaining()Kovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=29446
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29340
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-5/+5
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero svn path=/trunk/; revision=28770
2008-09-26Addt'l minor change relating to proto_reg_handoffBill Meier1-1/+1
svn path=/trunk/; revision=26282
2008-09-26Minor cleanup related to proto_register and proto_reg_handoffBill Meier1-14/+10
svn path=/trunk/; revision=26281
2008-03-04match_strval() may return NULL so don't blindly pass its return value into ↵Jeff Morriss1-1/+1
col_add_*() or proto_add_*(); use val_to_str() (returning "Unknown (%d)" if no match is found) instead. svn path=/trunk/; revision=24557
2008-03-04Fix http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2331 : Replace ↵Jeff Morriss1-16/+15
match_strval() with val_to_str() returning "Unknown" if no match was found. This prevents us from passing a NULL pointer (which should replace a %s in the format string) which was causing g_vsnprintf() to core (at least on Solaris and, apparently, Windows). svn path=/trunk/; revision=24555
2007-03-21Fixes for: warning: function declaration isn't a prototypeJörg Mayer1-1/+1
svn path=/trunk/; revision=21082
2006-12-24dissect_roofnet_link() returns no value and nothing expects it to;Guy Harris1-2/+1
declare it to return void, not int. Get rid of an unused variable. svn path=/trunk/; revision=20211
2006-12-19From Sebastien Tandel:Jaap Keuter1-0/+375
Here is a patch for the dissector of the new Roofnet protocol. svn path=/trunk/; revision=20154