aboutsummaryrefslogtreecommitdiffstats
path: root/epan/expert.c
AgeCommit message (Expand)AuthorFilesLines
2019-07-26HTTPS (almost) everywhere.Guy Harris1-1/+1
2019-04-04epan: Convert our PROTO_ITEM_ macros to inline functions.Gerald Combs1-7/+7
2018-06-18expert: Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-6/+2
2018-06-06Make sure proto_tree_add_expert items are always added to the tree.Guy Harris1-2/+31
2018-05-14Free g_ptr_array_free-related memory leaksPeter Wu1-1/+1
2018-05-14Fix indentation.Guy Harris1-1/+1
2018-02-08epan: use SPDX indentifiers.Dario Lombardo1-13/+1
2017-12-14epan: Make expert info summary text mandatoryStig Bjørlykke1-3/+1
2017-12-13epan: Use expert info summary text as field nameStig Bjørlykke1-1/+3
2017-10-15Remove superfluous null-checks before strdup/freeAhmad Fatoum1-7/+2
2017-01-12uat: add a reset callback.Dario Lombardo1-0/+1
2016-08-05Add PI_DEPRECATED expert info groupJoão Valverde1-0/+1
2016-07-21Use Windows CRT string functions in some places.Gerald Combs1-1/+3
2016-07-20Allow BASE_NONE (with strings conversion) for integral values again.Jeff Morriss1-2/+2
2016-06-10Qt: Expert info grouping.Gerald Combs1-1/+1
2016-02-03Adds calculation of preamble length and frame duration.Simon Barber1-0/+1
2016-01-24Add the packet number to the packet_info structure, and use it.Guy Harris1-2/+2
2015-12-11Qt: Reload Lua expert infosStig Bjørlykke1-2/+38
2015-09-21Remove proto_tree_add_text API.Michael Mann1-2/+2
2015-09-08Add API to expose "expert info" summary.Michael Mann1-0/+14
2015-09-07Add a new expert info type for decryption problems.Guy Harris1-0/+1
2015-08-21[Expert] Enhance error output to identify the duplicated field.AndersBroman1-2/+2
2015-08-11Added Reload Lua plugins.Stig Bjørlykke1-0/+5
2015-05-08Expert Info dialog.Gerald Combs1-0/+1
2015-02-18Make UAT record update callbacks return a success/failure indication.Guy Harris1-1/+3
2015-01-13UAT error string pointers should not be const pointers.Guy Harris1-1/+1
2015-01-11Replace some "low hanging fruit" uses of emem.Michael Mann1-2/+2
2014-09-15expert.[hc] Minor changes:Bill Meier1-69/+82
2014-07-26Allow severity levels of expert info items to be configured by the user.Michael Mann1-3/+154
2014-07-20va_list can't be NULL on ARM.Steev Klimaszewski1-7/+29
2014-03-26Add filterable expert info for LuaHadriel Kaplan1-12/+4
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
2014-02-25Remove trailing whitespaceBill Meier1-1/+1
2013-12-22Move expert value_string body to expert.c (from expert.h)Jakub Zawadzki1-1/+25
2013-11-10Add missing includes in order to remove exceptions.h from proto.h (next commit).Jakub Zawadzki1-0/+1
2013-10-09Prefix all "Wireshark application specific" display filters with a "_ws." to ...Michael Mann1-5/+5
2013-09-08Couldn't quite figure out how to make the expert items in proto.c and the LUA...Michael Mann1-2/+2
2013-09-01Remove expert_add_undecoded_item in favor of proto_tree_add_expert.Michael Mann1-13/+0
2013-08-05Completely remove support for proto_item_set_expert_flags.Michael Mann1-3/+11
2013-07-06Remove unused data structures from new expert code. Cleans up another ~17KBEvan Huus1-29/+1
2013-07-06Allocate expert protocol structs with wmem, cleans up a few KB of leaks inEvan Huus1-1/+2
2013-07-05Fix the use of va_args in the new expert code. Passing a va_list to a ... isEvan Huus1-1/+5
2013-07-02Differentiate "Disabled" from "Unknown" and provide macros for the enumerated...Michael Mann1-4/+4
2013-07-02Add proto_tree_add_expert and proto_tree_add_expert_format. This was added t...Michael Mann1-2/+44
2013-07-02Cache the malformed filter instead of looking it up each time a malformed pac...Michael Mann1-1/+4
2013-06-20inform expert info layer about the current number of packet commentsMartin Kaiser1-0/+7
2013-05-24Ensure most severe is displayed in expert column. Bug 7733 (https://bugs.wir...Michael Mann1-1/+4
2013-05-24expert_add_info(): we can't use va_start()/va_end() so don't try to use a va_...Jeff Morriss1-3/+1
2013-05-24expert_add_info() doesn't take a variable number of args; don't use va_start(...Jeff Morriss1-4/+2
2013-05-24Add expert info configuration framework. Bug 2412 (https://bugs.wireshark.or...Michael Mann1-7/+194