aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pw-atm.c
AgeCommit message (Expand)AuthorFilesLines
2016-07-06ATM PW: don't use macros to generate hf entries.Jeff Morriss1-20/+27
2016-03-20Create call_data_dissector() to call data dissector.Michael Mann1-3/+1
2016-01-14Have various ATM dissectors use the data arguments for pseudo-headers.Guy Harris1-38/+23
2015-12-09new_register_dissector -> register_dissector for dissector directory.Michael Mann1-3/+3
2015-12-09new_create_dissector_handle -> create_dissector_handle for dissector directory.Michael Mann1-4/+4
2015-11-25create_dissector_handle -> new_create_dissector_handleMichael Mann1-16/+19
2015-11-04Don't include "file.h" if you don't need it.Guy Harris1-0/+2
2015-06-23Replace more deprecated tvb_length callsEvan Huus1-2/+2
2015-06-14Clean up the ATM dissection a bit.Guy Harris1-3/+3
2015-04-08Remove MPLS preference that doubled for Decode As.Michael Mann1-8/+4
2014-12-21Cleanup use of #includes in non-generated epan/dissector/*.cBill Meier1-1/+0
2014-10-02Add editor modelines & adjust indentation/whitespace as needed.Bill Meier1-1/+14
2014-09-06Eliminate proto_tree_add_text from some of the dissectors.Michael Mann1-8/+7
2014-06-20Rename dissector_add_handle() to dissector_add_for_decode_as().Guy Harris1-4/+4
2014-06-19Revert "Fixup: tvb_* -> tvb_captured"Michael Mann1-2/+2
2014-06-19To make a dissector available for Decode As, just use dissector_add_handle().Guy Harris1-4/+4
2014-06-18Fixup: tvb_* -> tvb_capturedDario Lombardo1-2/+2
2014-06-07tvb_new_subset -> tvb_new_subset_length when length parameters are equal.Michael Mann1-4/+4
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
2013-12-14Fix some trivial warnings.Jakub Zawadzki1-0/+2
2013-12-12- Forward declaration of register functions.Anders Broman1-0/+3
2013-12-09Reject the packet if data is NULL without doing anything else.Chris Maynard1-4/+12
2013-10-26Don't use private_data for pwatm_private_data_t and instead pass it into the ...Michael Mann1-98/+62
2013-09-09expert_add_info_format_text -> expert_add_info_formatMichael Mann1-22/+22
2013-09-08Batch of filterable expert infoMichael Mann1-58/+93
2013-06-14Remove check_col() and the occasional tree.Michael Mann1-31/+13
2013-03-29Rename value string (and similar) functions to use a consistent pattern. ThisEvan Huus1-2/+2
2013-03-01From beroset:Anders Broman1-5/+5
2013-02-05Remove an unneeded set of parens in a macro definition;Bill Meier1-1/+1
2013-01-26Reformat hf array entries slightly (to help checkdf)Bill Meier1-118/+138
2013-01-04replace "unsigned" datatype with "guint". Some mpeg files needed "unsigned i...Michael Mann1-1/+1
2012-09-28Cleanup:Bill Meier1-171/+156
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-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
2012-03-12Use tvb_new_subset_remaining(...) instead of tvb_new_subset(..., -1, -1);Bill Meier1-193/+193
2011-10-27Fix some proto_tree_add_item() encoding args;Bill Meier1-3/+3
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-8/+8
2011-10-16Do some conversions of proto_tree_add_item() 'encoding' arg.Bill Meier1-12/+12
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in non-au...Bill Meier1-6/+6
2011-02-07Remove unneeded #includes (stdio.h,stdlib.h);Bill Meier1-81/+79
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-4/+4
2010-04-03Remove unneeded #include <stdio.h>Bill Meier1-1/+0
2010-01-22Fixes for gcc -Wshadow warnings; Fix indentation and do other minor cleanup i...Bill Meier1-68/+68
2010-01-13From Didier Gautheron:Anders Broman1-20/+5
2009-08-16Switch a bunch of dissectors over to using tvb_new_subset_remaining()Kovarththanan Rajaratnam1-5/+5
2009-08-09Don't guard col_set_str (COL_INFO/COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-5/+1
2009-07-01Thou shalt not call assert() in dissectors.Guy Harris1-9/+9
2009-06-30Replace one assert() with DISSECTOR_ASSET(), so we don't crash, and getGuy Harris1-2/+2
2009-06-29From Artem Tamazov:Anders Broman1-498/+1920