aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ndmp.c
AgeCommit message (Expand)AuthorFilesLines
2013-12-14Fix [-Wmissing-prototypes]Jakub Zawadzki1-0/+3
2013-12-12Reject the packet if data is NULL under conditions where it'll be used.Chris Maynard1-0/+4
2013-11-10Add data parameter to dissect_function_t in vsff structure. The intention he...Michael Mann1-23/+23
2013-11-09Add data parameter to tcp_dissect_pdus() as well as convert it to using "new"...Michael Mann1-19/+9
2013-11-07Add a p_add_proto_data call to dissect_ndmp to match the one inEvan Huus1-1/+6
2013-11-07Add modelines. Minor indentation fixes.Evan Huus1-5/+18
2013-11-05Remove DISSECTOR_ASSERT since private_data isn't being used anymore to transp...Michael Mann1-2/+0
2013-11-02Remove rpc_defrag.hMichael Mann1-1/+0
2013-11-02Pass struct tcpinfo into all TCP subdissectors instead of through pinfo->priv...Michael Mann1-2/+8
2013-10-29From didier gautheron: remove redundant or use faster col_xxx functionsBill Meier1-2/+1
2013-08-31More wmem.Evan Huus1-26/+26
2013-08-07From Michael Mann:Anders Broman1-2/+0
2013-07-17Remove fragment_data, add fragment_head, fragment_item - for now alias it to ...Jakub Zawadzki1-1/+1
2013-06-14Removed check_col() and the occasional tree.Michael Mann1-20/+8
2013-03-22Don't wire into the reassembly code the notion that reassemblies shouldGuy Harris1-8/+5
2013-03-18From beroset:Anders Broman1-12/+12
2013-02-27Get rid of unnecessary includes of "packet-frame.h".Guy Harris1-1/+0
2013-02-26Fix spelling/typos found using a list of commonly misspelled words.Bill Meier1-1/+1
2013-01-31Use '#if 0 ... #endif' rather than /** ... **/ to comment outBill Meier1-4/+4
2013-01-26Comment out cases of unused hf array entries found by checkhf.Bill Meier1-2/+6
2012-12-26Fix a bunch of warnings.Guy Harris1-1/+1
2012-11-29Make all enum_val_t's const.Jeff Morriss1-1/+1
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-2/+2
2012-09-07From Robert Bullen via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=76...Jeff Morriss1-0/+2
2012-08-10Use val_to_str_const() where appropriate;Bill Meier1-1/+1
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-2/+2
2011-10-16Do some conversions of proto_tree_add_item() 'encoding' arg.Bill Meier1-4/+4
2011-10-10 Convert 'encoding' parameter of certain proto_tree_add_item() calls in non-a...Bill Meier1-2/+2
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in non-au...Bill Meier1-76/+76
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly referen...Bill Meier1-3/+3
2011-08-25"Bytes left to read" is an unsigned quantity. Changed FT_INT64 to FT_UINT64 ...Chris Maynard1-1/+1
2011-04-19From Michael Mann via bug 2794:Stig Bjørlykke1-1/+1
2011-01-30Introduce "Fragment count" filter element for all protocols doing reassembly.Stig Bjørlykke1-0/+5
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-1/+1
2010-10-10Define some fcns & vars as static ...Bill Meier1-1/+1
2010-09-24(Refining the regexp...) Replace blurbs that match the name (case insensitive...Jeff Morriss1-2/+2
2010-05-13As suggested in http://www.wireshark.org/lists/wireshark-dev/200809/msg00075....Jeff Morriss1-33/+29
2010-04-03Remove unneeded #include <stdio.h>Bill Meier1-1/+0
2010-02-06Renamed some reassembled data texts.Stig Bjørlykke1-3/+3
2010-02-02Introduce "Reassembled length" filter element for all protocols doingStig Bjørlykke1-0/+6
2009-12-19For fields of type FT_ABSOLUTE_TIME, have the "display" value be one ofGuy Harris1-4/+4
2009-10-24No point passing a global pointer as a function argument.Stig Bjørlykke1-18/+18
2009-10-24From Robert Simac via bug 3470:Stig Bjørlykke1-0/+125
2009-08-16Switch a bunch of dissectors over to using tvb_new_subset_remaining()Kovarththanan Rajaratnam1-2/+2
2009-08-09Don't guard col_clear with col_checkKovarththanan Rajaratnam1-3/+1
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-4/+2
2009-07-29From Chris Costa: Fix Bug 3786: "NDMP fragmentation fails when final fragment...Bill Meier1-3/+3
2009-07-27Improve defragmentation:Bill Meier1-51/+92