aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.c
AgeCommit message (Expand)AuthorFilesLines
2013-10-15g_slist_prepend() should be faster than g_slist_append() use it where the ord...Anders Broman1-4/+4
2013-10-12Free the actual struct, not the typedef thereof, because the typedef is actuallyEvan Huus1-1/+1
2013-10-11Destroy dissector tables on shutdown and use epan scoped memory of handles.Evan Huus1-7/+18
2013-10-11Free all the heuristict dissector lists and their entries on shutdown, anotherEvan Huus1-6/+21
2013-10-09Prefix all "Wireshark application specific" display filters with a "_ws." to ...Michael Mann1-1/+1
2013-09-09Yet another cast fix.Stig Bjørlykke1-1/+1
2013-09-09Added casts in dissector_delete_all_check().Stig Bjørlykke1-2/+2
2013-09-09Added dissector_delete_all() to remove all entries from a dissector table.Stig Bjørlykke1-0/+18
2013-08-29Fix some indentation to match mode-lines; Do some other minor reformatting.Bill Meier1-33/+34
2013-08-25Simplify adding and deletetion of port ranges by adding new methods.Anders Broman1-0/+28
2013-08-14Pre-emptively create the other two hash tables in packet.c for simplicity'sEvan Huus1-15/+5
2013-08-13Create the dissector hash table in only one place, and specify that its valuesEvan Huus1-12/+7
2013-08-11Free a few hash tables in packet.c when we shutdown.Evan Huus1-40/+41
2013-08-07Ensure we have both _initialize() and a corresponding _cleanup() routines forJeff Morriss1-2/+0
2013-08-05Dissector handle after [new_]register_dissector can be get by find_dissector(...Jakub Zawadzki1-2/+6
2013-08-01Use opt_comment only when has_phdr_comment is set.Jakub Zawadzki1-1/+1
2013-08-01Remove fdata->opt_comment, add pkt_comment to pinfoJakub Zawadzki1-0/+6
2013-08-01Move some asserts to be triggered sooner.Jakub Zawadzki1-9/+8
2013-07-21Replace relative timestamp with reference frame number. Saves 16B per frame.Jakub Zawadzki1-0/+2
2013-07-21Add helper function to epan_session which can be used to get absolute timesta...Jakub Zawadzki1-1/+2
2013-07-11packet dissection now takes pointer to tvb instead of guint8 dataJakub Zawadzki1-27/+2
2013-06-18Add ability to export decrypted SSL/DTLS PDUsPascal Quantin1-0/+10
2013-05-24Add expert info configuration framework. Bug 2412 (https://bugs.wireshark.or...Michael Mann1-2/+2
2013-05-16Use slice memory for data sources, since we never have to realloc it.Evan Huus1-2/+2
2013-04-23Add curr_layer_num which can be used to keep track of multiple occurances of ...Anders Broman1-5/+8
2013-04-18Add to tvbuffs a "fragment length" field; if the tvbuff represents theGuy Harris1-2/+2
2013-03-24Add const casts and make local functions static.Anders Broman1-3/+3
2013-03-14From beroset:Anders Broman1-35/+35
2013-03-06Fix the plurality of the length of a data source if it has only 1 byte (I'mJeff Morriss1-2/+5
2013-02-27Move show_exception() and show_reported_bounds_error() toGuy Harris1-6/+0
2012-12-02Create a wmem pool in pinfo and use it for some address allocations.Evan Huus1-0/+4
2012-11-09Enter and leave wmem's file scope appropriately.Evan Huus1-0/+5
2012-10-20Move ep_free_all() *AFTER* packet dissection.Jakub Zawadzki1-3/+11
2012-10-20Make data_source opqaue, add getter for tvb.Jakub Zawadzki1-9/+18
2012-10-16Add wtap_pseudo_header union to wtap_pkthdr structure.Jakub Zawadzki1-2/+3
2012-10-12Use seasonal allocation for name resolution. This effectively scrubs ourGerald Combs1-2/+16
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
2012-09-18Revert r44978: dissector_add_uint: Legalize formerly improper use of the API ...Jakub Zawadzki1-46/+39
2012-09-18dissector_add_uint:Jörg Mayer1-39/+46
2012-09-11Add data parameter to dissector_try_uint_newJakub Zawadzki1-3/+4
2012-09-11Add new function: call_dissector_with_dataJakub Zawadzki1-3/+10
2012-09-11Add data parameter to call_dissector_only.Jakub Zawadzki1-16/+16
2012-09-11Add data parameter to dissector_try_heuristicJakub Zawadzki1-3/+3
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-2/+2
2012-09-08Use g_hash_table_new_full() instead of g_hash_table_new() for subdissectorEvan Huus1-16/+8
2012-08-29Add casts to fix compilation with GCC.Evan Huus1-6/+18
2012-08-29Fix memleak.Jakub Zawadzki1-0/+1
2012-08-29Fix Bug 7348 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7348)Michael Mann1-3/+51
2012-02-28Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3315 -Jeff Morriss1-0/+9
2012-01-20Add 'heur_dissector_set_enabled()' to allow a dissector to enable/disable heu...Bill Meier1-153/+178