| Commit message (Expand) | Author | Age | Files | Lines |
* | Add the source file name and line number to the dissector bug report | Guy Harris | 2005-01-17 | 1 | -2/+3 |
* | Use REPORT_DISSECTOR_BUG() for the "bogus length" error in | Guy Harris | 2005-01-17 | 1 | -2/+6 |
* | Rename the FieldError exception to DissectorError. | Guy Harris | 2005-01-16 | 1 | -6/+1 |
* | throw the new FieldError exception, if a dissector tries to add a field with ... | Ulf Lamping | 2005-01-16 | 1 | -1/+6 |
* | performance improvement: | Ulf Lamping | 2005-01-12 | 1 | -44/+68 |
* | From Luis Ontanon: if new ett values are registered after the | Guy Harris | 2005-01-08 | 1 | -7/+16 |
* | Constify a pointer, so that the array of pointers to ett_ values can be | Guy Harris | 2005-01-07 | 1 | -2/+2 |
* | Cast away the constness of the argument to "g_tree_lookup()" - another | Guy Harris | 2005-01-02 | 1 | -1/+1 |
* | "proto_registrar_get_byname()" doesn't modify its argument, so make it | Guy Harris | 2004-12-31 | 1 | -1/+1 |
* | Check to make sure we don't give a protocol tree item a negative length. | Guy Harris | 2004-10-27 | 1 | -4/+9 |
* | Fix a typo. | Guy Harris | 2004-09-21 | 1 | -1/+1 |
* | From Dave Richards: fix a format string. | Guy Harris | 2004-09-11 | 1 | -1/+1 |
* | Add a "-G fields2" option which is like "-G fields", but extends the field | Gilbert Ramirez | 2004-09-10 | 1 | -5/+163 |
* | To conert a little-endian value to a big-endian value, use | Guy Harris | 2004-09-08 | 1 | -1/+1 |
* | From Peter Johansson, make proto_tree_add_item() handle IPv4 addresses | Ronnie Sahlberg | 2004-09-08 | 1 | -1/+1 |
* | Add "tvb_get_ntoh64()" and "tvb_get_letoh64()" routines to fetch 64-bit | Guy Harris | 2004-08-22 | 1 | -99/+206 |
* | Add support for FT_FLOAT and FT_DOUBLE in "proto_tree_add_item()" | Guy Harris | 2004-08-10 | 1 | -0/+20 |
* | From Albert Chin: rename resolv.{ch} to addr_resolv.{ch}, so that an | Guy Harris | 2004-08-06 | 1 | -1/+1 |
* | Set the svn:eol-style property on all text files to "native", so that | Guy Harris | 2004-07-18 | 1 | -1/+1 |
* | "length" is relative to the start of the field, so don't subtract the | Guy Harris | 2004-07-09 | 1 | -5/+6 |
* | bugfix: don't try to print data, if tvb is too short | Ulf Lamping | 2004-07-05 | 1 | -4/+4 |
* | Instead of using pointer casts in the slab allocator stuff, add a | Guy Harris | 2004-07-04 | 1 | -1/+4 |
* | Make the "SLAB_ALLOC()" and "SLAB_FREE()" macros take the type of the | Guy Harris | 2004-07-04 | 1 | -11/+11 |
* | add PROTO_ITEM_SET_HIDDEN() and PROTO_ITEM_SET_GENERATED(), | Ulf Lamping | 2004-05-01 | 1 | -44/+21 |
* | From Tomas Kukosa: add APIs to get the parent of a protocol tree item | Guy Harris | 2004-03-25 | 1 | -1/+21 |
* | From Tomas Kukosa: BER dissector enhancements and proto.c updates to | Guy Harris | 2004-03-25 | 1 | -1/+20 |
* | Apply the patches from Tadaaki Nagao for a global version of disabled | Richard Sharpe | 2004-01-03 | 1 | -8/+8 |
* | In "alloc_field_info()", handle the case where the offset is past the | Guy Harris | 2003-12-24 | 1 | -1/+20 |
* | Let FT_PROTOCOL fields, if the length specified is -1, have a length of | Guy Harris | 2003-12-24 | 1 | -1/+4 |
* | Add the ability to print packet dissections in PDML (an XML-based format) | Gilbert Ramirez | 2003-12-06 | 1 | -1/+41 |
* | It turns out the protocol tree parent link was used, so we need it in | Guy Harris | 2003-12-04 | 1 | -1/+3 |
* | Don't use GNodes for the protocol tree, put the sibling pointer, and | Guy Harris | 2003-12-04 | 1 | -25/+117 |
* | performance update | Ronnie Sahlberg | 2003-12-03 | 1 | -5/+3 |
* | The "ptr_u" unions no longer have a "next" pointer - they now just have | Guy Harris | 2003-12-03 | 1 | -25/+24 |
* | Instead of requiring slab-allocated structures to have a "next" pointer, | Guy Harris | 2003-12-03 | 1 | -7/+7 |
* | From Didier Gautheron: put an "fvalue_t" structure into a "field_info" | Guy Harris | 2003-12-02 | 1 | -47/+46 |
* | Move the definition of the tvbuff_t structure and friends to tvbuff.h | Ronnie Sahlberg | 2003-12-02 | 1 | -6/+3 |
* | Use the LSAB_ALLOC and SLAB_FREE macros to allocate/free fvalue_t data | Ronnie Sahlberg | 2003-12-02 | 1 | -3/+1 |
* | Moving SLAB_ALLOC and SLAB_FREE to its own header file | Ronnie Sahlberg | 2003-12-02 | 1 | -24/+2 |
* | Speed updates | Ronnie Sahlberg | 2003-11-26 | 1 | -92/+47 |
* | As with fvalue_t, so with field_info and item_label - the individual | Guy Harris | 2003-11-25 | 1 | -13/+33 |
* | replace free_node_field_info with a macro since it is only called from one ot... | Ronnie Sahlberg | 2003-11-25 | 1 | -8/+5 |
* | rename FREE_FIELD_INFO to FIELD_INFO_FREE for consistency | Ronnie Sahlberg | 2003-11-25 | 1 | -3/+3 |
* | create a FIELD_INFO_NEW for consistency | Ronnie Sahlberg | 2003-11-25 | 1 | -14/+16 |
* | remove another slow GMemChunk from ethereal making ethereal a little bit faster | Ronnie Sahlberg | 2003-11-25 | 1 | -25/+44 |
* | change free_field_info to FREE_FIELD_INFO to indicate it is a macro and not a... | Ronnie Sahlberg | 2003-11-25 | 1 | -3/+3 |
* | fvalue_free() is one of the most called functions. | Ronnie Sahlberg | 2003-11-25 | 1 | -2/+3 |
* | Make the recent epan/proto.{c,h} change compile. | Guy Harris | 2003-11-24 | 1 | -28/+28 |
* | performance enhancement to proto.c | Ronnie Sahlberg | 2003-11-24 | 1 | -21/+60 |
* | As per Guys suggestion, continue optimizing proto.c to macroize it | Ronnie Sahlberg | 2003-11-22 | 1 | -50/+37 |