aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.c
AgeCommit message (Expand)AuthorFilesLines
2011-07-03Add ENC_ values for UTF-8 and EBCDIC, support them for FT_STRINGZGuy Harris1-1/+8
2011-06-25Make guy's fix in revision 37236 actually work:Stig Bjørlykke1-1/+1
2011-06-19Make creating a display filter from a custom column defined as integer withStig Bjørlykke1-12/+20
2011-06-19Handle BASE_NONE as BASE_DEC for filter expression in custom columns.Stig Bjørlykke1-0/+1
2011-06-16Squelch some compiler warnings.Guy Harris1-3/+6
2011-06-07Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warningsBill Meier1-3/+1
2011-05-27Make TVBs opaque for most users.Jeff Morriss1-10/+10
2011-05-19Add a check that (plain) value_strings that are used in hf items don't haveMartin Mathieson1-0/+48
2011-05-18You cannot just make the "len" field of a GByteArray larger, if there'sGuy Harris1-1/+6
2011-05-18Make some more routines not used outside epan/proto.c static.Guy Harris1-3/+3
2011-05-09Convert SLAB_-s, to sl_-API.Jakub Zawadzki1-13/+16
2011-05-08Add FT_EUI64 Field TypeAlexis La Goutte1-3/+110
2011-04-11Use g_strlcpy() instead of prohibited strncpy() to guarantee NULL-termination.Chris Maynard1-1/+1
2011-04-10strcpy -> strncpy.Stig Bjørlykke1-1/+1
2011-03-29Guard against NULL return from find_protocol_by_id().Stig Bjørlykke1-0/+3
2011-03-28Don't use prohibited strncpy(). In this case, use g_strlcat() instead.Chris Maynard1-6/+1
2011-03-26Added a FALLTHRU comment to avoid a coverity warning.Stig Bjørlykke1-0/+1
2011-03-20Clean up indentation.Guy Harris1-7/+7
2011-02-10Modify proto_tree_add_bytes_format() and proto_tree_add_bytes_format_value()Jeff Morriss1-2/+14
2011-02-08Add support for 4-byte NTP times (only the seconds) in proto_tree_add_item().Jeff Morriss1-18/+27
2011-02-07For FT_{ABSOLUTE,RELATIVE}_TIME, make the rest of the encodingGuy Harris1-20/+180
2011-02-07Add support for passing NTP times to proto_tree_add_item() by specifyingJeff Morriss1-21/+28
2011-02-04Fix Bug 5500 - failed assertion in ISAKMP dissector (proto.c:4002) Anders Broman1-0/+9
2011-01-02Fix indentation.Guy Harris1-1/+1
2010-11-14'tshark -G values' - Validate (somewhat) value_string_ext before use to preve...Bill Meier1-0/+4
2010-11-12Enhance 'tshark -G values': Add info about extended value strings (including ...Bill Meier1-9/+31
2010-11-12Use val_to_str_const & val_to_str_ext_const where appropriate.Bill Meier1-10/+10
2010-10-14Rework "extended value strings":Bill Meier1-1/+1
2010-10-14Support multiple header fields with the same abbreviation in custom columns.Stig Bjørlykke1-11/+47
2010-10-14Fix crash for 'tshark -G values' when printing "extended value string" value.Bill Meier1-1/+1
2010-09-25Fix the output of columns with "show resolved" disabled when all occurrences ...Sake Blok1-67/+68
2010-09-23Add some more casts.Jeff Morriss1-8/+8
2010-09-23Revert 34191 and add some casts insteadJeff Morriss1-18/+17
2010-09-23Use gsize (size_t) in a couple of places to make the Win64 build happy.Jeff Morriss1-7/+8
2010-09-22Make buildbot happy again...Sake Blok1-1/+1
2010-09-22When using a custom column, make it possible to select which occurrence to sh...Sake Blok1-168/+203
2010-09-08Allow for proto_tree_add_item() with FT_ABSOLUTE_TIME and FT_RELATIVE_TIMEStig Bjørlykke1-3/+9
2010-08-18Fix indentation.Anders Broman1-3/+3
2010-08-14Added proto_item_prepend_text().Stig Bjørlykke1-0/+41
2010-07-21Fixed adding a boolean value as a custom column.Stig Bjørlykke1-1/+4
2010-06-25Enable "Show Resolved" for custom OID columns.Stig Bjørlykke1-0/+8
2010-06-24Ensure we use the numeric value when creating a filter from a custom columnStig Bjørlykke1-6/+89
2010-06-22Update to reflect changes in defines: REP_* > ENC_*Stig Bjørlykke1-1/+1
2010-05-29Increase the base size to 100 000 we are using more than that.Anders Broman1-2/+2
2010-05-26proto_registrar_dump_fields: output "" for blurb if blurb is a zero-length st...Bill Meier1-0/+2
2010-05-26More <stdarg.h> cleanup; some are real bugs, some are just "don't doGuy Harris1-5/+7
2010-05-24Refer to the endianness arguments as "encoding" rather thanGuy Harris1-43/+112
2010-05-21Have abs_time_to_str() and abs_time_to_str_secs() take an additionalGuy Harris1-2/+2
2010-05-10Allow for proto_tree_add_item() with FT_ABSOLUTE_TIME and FT_RELATIVE_TIME.Jaap Keuter1-0/+14
2010-05-02From Jakub Zawadzki:Anders Broman1-3/+32