aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.c
Commit message (Expand)AuthorAgeFilesLines
* Add the source file name and line number to the dissector bug reportGuy Harris2005-01-171-2/+3
* Use REPORT_DISSECTOR_BUG() for the "bogus length" error inGuy Harris2005-01-171-2/+6
* Rename the FieldError exception to DissectorError.Guy Harris2005-01-161-6/+1
* throw the new FieldError exception, if a dissector tries to add a field with ...Ulf Lamping2005-01-161-1/+6
* performance improvement: Ulf Lamping2005-01-121-44/+68
* From Luis Ontanon: if new ett values are registered after theGuy Harris2005-01-081-7/+16
* Constify a pointer, so that the array of pointers to ett_ values can beGuy Harris2005-01-071-2/+2
* Cast away the constness of the argument to "g_tree_lookup()" - anotherGuy Harris2005-01-021-1/+1
* "proto_registrar_get_byname()" doesn't modify its argument, so make itGuy Harris2004-12-311-1/+1
* Check to make sure we don't give a protocol tree item a negative length.Guy Harris2004-10-271-4/+9
* Fix a typo.Guy Harris2004-09-211-1/+1
* From Dave Richards: fix a format string.Guy Harris2004-09-111-1/+1
* Add a "-G fields2" option which is like "-G fields", but extends the fieldGilbert Ramirez2004-09-101-5/+163
* To conert a little-endian value to a big-endian value, useGuy Harris2004-09-081-1/+1
* From Peter Johansson, make proto_tree_add_item() handle IPv4 addressesRonnie Sahlberg2004-09-081-1/+1
* Add "tvb_get_ntoh64()" and "tvb_get_letoh64()" routines to fetch 64-bitGuy Harris2004-08-221-99/+206
* Add support for FT_FLOAT and FT_DOUBLE in "proto_tree_add_item()"Guy Harris2004-08-101-0/+20
* From Albert Chin: rename resolv.{ch} to addr_resolv.{ch}, so that anGuy Harris2004-08-061-1/+1
* Set the svn:eol-style property on all text files to "native", so thatGuy Harris2004-07-181-1/+1
* "length" is relative to the start of the field, so don't subtract theGuy Harris2004-07-091-5/+6
* bugfix: don't try to print data, if tvb is too shortUlf Lamping2004-07-051-4/+4
* Instead of using pointer casts in the slab allocator stuff, add aGuy Harris2004-07-041-1/+4
* Make the "SLAB_ALLOC()" and "SLAB_FREE()" macros take the type of theGuy Harris2004-07-041-11/+11
* add PROTO_ITEM_SET_HIDDEN() and PROTO_ITEM_SET_GENERATED(),Ulf Lamping2004-05-011-44/+21
* From Tomas Kukosa: add APIs to get the parent of a protocol tree itemGuy Harris2004-03-251-1/+21
* From Tomas Kukosa: BER dissector enhancements and proto.c updates toGuy Harris2004-03-251-1/+20
* Apply the patches from Tadaaki Nagao for a global version of disabledRichard Sharpe2004-01-031-8/+8
* In "alloc_field_info()", handle the case where the offset is past theGuy Harris2003-12-241-1/+20
* Let FT_PROTOCOL fields, if the length specified is -1, have a length ofGuy Harris2003-12-241-1/+4
* Add the ability to print packet dissections in PDML (an XML-based format)Gilbert Ramirez2003-12-061-1/+41
* It turns out the protocol tree parent link was used, so we need it inGuy Harris2003-12-041-1/+3
* Don't use GNodes for the protocol tree, put the sibling pointer, andGuy Harris2003-12-041-25/+117
* performance updateRonnie Sahlberg2003-12-031-5/+3
* The "ptr_u" unions no longer have a "next" pointer - they now just haveGuy Harris2003-12-031-25/+24
* Instead of requiring slab-allocated structures to have a "next" pointer,Guy Harris2003-12-031-7/+7
* From Didier Gautheron: put an "fvalue_t" structure into a "field_info"Guy Harris2003-12-021-47/+46
* Move the definition of the tvbuff_t structure and friends to tvbuff.hRonnie Sahlberg2003-12-021-6/+3
* Use the LSAB_ALLOC and SLAB_FREE macros to allocate/free fvalue_t dataRonnie Sahlberg2003-12-021-3/+1
* Moving SLAB_ALLOC and SLAB_FREE to its own header fileRonnie Sahlberg2003-12-021-24/+2
* Speed updatesRonnie Sahlberg2003-11-261-92/+47
* As with fvalue_t, so with field_info and item_label - the individualGuy Harris2003-11-251-13/+33
* replace free_node_field_info with a macro since it is only called from one ot...Ronnie Sahlberg2003-11-251-8/+5
* rename FREE_FIELD_INFO to FIELD_INFO_FREE for consistencyRonnie Sahlberg2003-11-251-3/+3
* create a FIELD_INFO_NEW for consistencyRonnie Sahlberg2003-11-251-14/+16
* remove another slow GMemChunk from ethereal making ethereal a little bit fasterRonnie Sahlberg2003-11-251-25/+44
* change free_field_info to FREE_FIELD_INFO to indicate it is a macro and not a...Ronnie Sahlberg2003-11-251-3/+3
* fvalue_free() is one of the most called functions.Ronnie Sahlberg2003-11-251-2/+3
* Make the recent epan/proto.{c,h} change compile.Guy Harris2003-11-241-28/+28
* performance enhancement to proto.cRonnie Sahlberg2003-11-241-21/+60
* As per Guys suggestion, continue optimizing proto.c to macroize itRonnie Sahlberg2003-11-221-50/+37