aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.c
AgeCommit message (Expand)AuthorFilesLines
2003-10-06When registering a field, make sure its ID is -1 or 0 - if it's not,Guy Harris1-1/+11
2003-08-25From Matthijs Melchior:Guy Harris1-81/+81
2003-07-31Give FT_IPv4 val_repr_len and val_to_repr methods, and use them forGuy Harris1-13/+2
2003-07-31Add val_repr_len and val_to_repr methods for FT_FLOAT and FT_DOUBLE, andGuy Harris1-35/+3
2003-07-30Give FT_ABSOLUTE_TIME and FT_RELATIVE_TIME val_repr_len and val_to_reprGuy Harris1-32/+4
2003-07-07Mark the "plugin_dir" argument to "proto_init()" as unused if we don'tGuy Harris1-2/+7
2003-07-04Use FLT_DIG and DBL_DIG from float.h to create printf-style print formatGilbert Ramirez1-5/+10
2003-06-12Add new routines:Guy Harris1-11/+6
2003-06-11Put in a missing "break" statement.Guy Harris1-1/+2
2003-06-11Expand the ability of fvalue_to_string_repr, and modify more FT_* typesGilbert Ramirez1-36/+19
2003-06-10Get rid of an unused variable.Guy Harris1-2/+1
2003-06-05Use "=" instead of "==" in an assignment.Gerald Combs1-2/+2
2003-06-05When "proto_tree_add_item()" is used with FT_STRINGZ with a lengthGuy Harris1-11/+34
2003-06-04When "proto_tree_add_item()" is used with an FT_STRINGZ and given aGuy Harris1-24/+67
2003-05-19More tvb_get_nstringz0() fixes. Timo Sirainen pointed out that BadGerald Combs1-19/+20
2003-05-03Add a note about the "val_to_string_repr" and "string_repr_len" forGuy Harris1-1/+24
2003-05-03Rename "proto_alloc_dfilter_string()" toGuy Harris1-23/+104
2003-04-29Add a "proto_item_set_end()" routine that sets the length of an itemGuy Harris1-1/+20
2003-02-08Provide a way for ftype modules to provide a string representationGilbert Ramirez1-23/+8
2003-01-31Get rid of BASE_BIN - it's just the same as BASE_DEC, but people seemedGuy Harris1-6/+1
2003-01-21Fix a typo.Gerald Combs1-2/+2
2002-12-31From Ronald Henderson: fix up "snprintf()" and "vsnprintf()" calls inGuy Harris1-27/+91
2002-12-19Add a new field type FT_FRAMENUM; an FT_FRAMENUM is a 32-bit unsignedGuy Harris1-77/+104
2002-11-28Make the "strings" pointer in a "header_field_info" structure a constGuy Harris1-4/+4
2002-10-15Squelch some compiler warnings.Guy Harris1-4/+4
2002-10-15When registering a protocol, make sure there are no other protocols withGuy Harris1-1/+38
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-16/+16
2002-08-24From Ulf Lamping: add a new FT_FLOAT type, for single-precisionGuy Harris1-12/+184
2002-08-18From Vassilii Khachaturov: put protocol blurbs into tables generatedGuy Harris1-3/+3
2002-08-02Replace the types from sys/types.h and netinet/in.h by their glib.hJörg Mayer1-5/+1
2002-06-19From Joerg Mayer: fix a typo in a comment.Guy Harris1-2/+2
2002-05-14Make the "-G" flag take an argument. If no arugment is specified, or ifGuy Harris1-6/+28
2002-05-09Merge the work in Novell_NCP_branch into the mainline code.Gilbert Ramirez1-19/+46
2002-04-29Move the code to build the balanced tree of fields into "proto_init()",Guy Harris1-21/+83
2002-04-28Note in a comment that the display filter code has its own mechanism forGuy Harris1-2/+5
2002-04-28Use "format_text()" when setting the display representation of stringGuy Harris1-2/+4
2002-04-20Clean up white space.Guy Harris1-35/+39
2002-04-19proto_registrar_get_nth(hfinfo->id) == hfinfo, so use the latter ratherGuy Harris1-2/+2
2002-04-18From Phil Williams: support for looking up fields by name.Guy Harris1-12/+34
2002-04-18Catch attempts to register ett_ values after the array of "tree isGuy Harris1-1/+11
2002-04-04Before putting an item into a protocol tree, make sure the item aboveGuy Harris1-17/+32
2002-04-01Start assigning ett_ values at 0, rather than 1; get rid of the reservedGuy Harris1-19/+4
2002-03-19Allow "proto_item_append_text()" to an item that doesn't have aGuy Harris1-5/+9
2002-03-06tvb_get_nstringz() needs to terminate a string with a NUL if theGilbert Ramirez1-14/+16
2002-03-02From Joerg Mayer: get rid of "-Wno-unused" flag in some configureGuy Harris1-3/+3
2002-02-27Remove unused variables, structure definitions, and functions.Gilbert Ramirez1-43/+1
2002-02-27From Joerg Mayer: remove unused variables and declarations ofGuy Harris1-3/+1
2002-02-18Have "alloc_field_info()" take a pointer to the field length as anGuy Harris1-33/+56
2002-02-18Don't give tvbuffs names; instead, give data sources names, where aGuy Harris1-9/+8
2002-02-01Provide tvb_ensure_length_remaining(), which is likeGilbert Ramirez1-3/+9