aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ber.c
AgeCommit message (Expand)AuthorFilesLines
2014-06-18Fixup: tvb_* -> tvb_capturedDario Lombardo1-69/+69
2014-06-18Fixup: tvb_get_string(z) -> tvb_get_string(z)_encDario Lombardo1-3/+3
2014-06-17fix underflow in BER constrained bitstringsEvan Huus1-1/+1
2014-06-16Register BER dissector as new.Stig Bjørlykke1-5/+8
2014-06-07tvb_new_subset -> tvb_new_subset_length when length parameters are equal.Michael Mann1-8/+8
2014-05-06Tweak ber_choice flow control.Evan Huus1-2/+2
2014-04-18Remove all old BER functions.Stig Bjørlykke1-1120/+0
2014-04-07Absolute and relative OIDs have different FT_ values.Guy Harris1-1/+5
2014-04-07Handle string types with somewhat appropriate encodings.Guy Harris1-1/+81
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
2014-02-03Fix all -fstrict-alias warnings found by gcc 4.1.2Gilbert Ramirez1-1/+1
2014-01-27Add missing cast.Evan Huus1-1/+1
2014-01-27Do not handle BER bitstring as ASCII string, because this will failStig Bjørlykke1-1/+1
2013-12-21Add missing includesJakub Zawadzki1-0/+1
2013-12-19Rename a couple of to_str functions to have ep_ in the name. This makes itEvan Huus1-1/+1
2013-12-10Get the "Decode As" dialog working, albeit with a few warts. It differsGerald Combs1-1/+1
2013-11-20Mark parameter as unusedAnders Broman1-1/+1
2013-11-20Provide "Decode As" functionality through dissectors themselves instead of th...Michael Mann1-0/+56
2013-11-10Add missing includes in order to remove exceptions.h from proto.h (next commit).Jakub Zawadzki1-0/+1
2013-11-02Require dissector_try_string to pass a data parameter to its subdissectors. ...Michael Mann1-3/+3
2013-10-31Add a data parameter to call_ber_oid_callback to be able to pass data to subd...Michael Mann1-5/+5
2013-10-23#if 0 numerous "unused const variables" (mostly value-string-arrays);Bill Meier1-0/+2
2013-10-13whitespace fixes; mostly: remove trailing blanksBill Meier1-6/+6
2013-10-06From Ed Beroset via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9192 :Pascal Quantin1-102/+27
2013-10-06Add support for RELATIVE-OID ASN.1 type. Bug 9192 (https://bugs.wireshark.org...Michael Mann1-9/+107
2013-09-30Convert some proto_tree_add_string_format calls to something more appropriate.Michael Mann1-98/+98
2013-09-22emem -> wmem conversion:Pascal Quantin1-4/+4
2013-09-20Indicate Sequence of 0 length.Anders Broman1-0/+3
2013-09-12Convert a few more dissectors to wmemPascal Quantin1-5/+7
2013-09-09expert_add_info_format_text -> expert_add_info_formatMichael Mann1-27/+27
2013-08-05Keep result of [new_]register_dissector in some dissectors. [2 of x]Jakub Zawadzki1-3/+5
2013-07-17Remove fragment_data, add fragment_head, fragment_item - for now alias it to ...Jakub Zawadzki1-1/+1
2013-07-14Rewrite reassemble API to use TVBs instead of raw data.Jakub Zawadzki1-1/+1
2013-07-02Make expert items filterable. First use of proto_tree_add_expert.Michael Mann1-203/+175
2013-06-20Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8799 :Pascal Quantin1-3/+5
2013-06-19Rework the change from r15595 a bit: when creating a TVB subset, always giveJeff Morriss1-6/+13
2013-04-30Follow-up to r49055 as noted onEvan Huus1-1/+4
2013-04-26From me: only sign-extend BER integers if the field is actually signedEvan Huus1-3/+4
2013-04-20Initialize branch_taken right at the top of dissect_ber_choice so that theEvan Huus1-3/+4
2013-03-22Don't wire into the reassembly code the notion that reassemblies shouldGuy Harris1-7/+5
2013-03-17From beroset:Anders Broman1-1/+1
2013-03-15[-Wmissing-prototypes]Anders Broman1-6/+9
2013-02-26Fix spelling/typos found using a list of commonly misspelled words.Bill Meier1-2/+2
2013-02-26it's ==> its & its ==> it's as needed.Bill Meier1-2/+2
2012-12-21Constify some character pointer variables to avoid warnings aboutGuy Harris1-1/+1
2012-10-18Reformat for readability:Bill Meier1-1400/+1798
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
2012-09-07From Robert Bullen via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=76...Jeff Morriss1-0/+2
2012-08-14more ephemeral memory cleanupMichael Mann1-14/+13
2012-08-10Use val_to_str_const() where appropriate;Bill Meier1-45/+47