Ethereal-cvs: [Ethereal-cvs] cvs commit: ethereal/epan/ftypes ftype-bytes.c ftype-double.c fty

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Gilbert Ramirez <gram@xxxxxxxxxxxxxxxxx>
Date: Wed, 27 Aug 2003 10:23:09 -0500 (CDT)
gram        2003/08/27 10:23:09 CDT

  Modified files:
    epan/ftypes          ftype-bytes.c ftype-double.c 
                         ftype-integer.c ftype-ipv4.c ftype-none.c 
                         ftype-string.c ftype-time.c 
                         ftype-tvbuff.c ftypes-int.h ftypes.c 
                         ftypes.h 
  Log:
  Add a "contains" operator for byte-strings, strings, and tvbuffs (protocols).
  The search uses a naive approach; more work is required to add a
  Boyer-Moore Search algorithm.
  
  Revision  Changes    Path
  1.17      +41 -9     ethereal/epan/ftypes/ftype-bytes.c
  1.11      +4 -2      ethereal/epan/ftypes/ftype-double.c
  1.15      +15 -4     ethereal/epan/ftypes/ftype-integer.c
  1.13      +4 -3      ethereal/epan/ftypes/ftype-ipv4.c
  1.7       +2 -1      ethereal/epan/ftypes/ftype-none.c
  1.13      +52 -4     ethereal/epan/ftypes/ftype-string.c
  1.21      +13 -3     ethereal/epan/ftypes/ftype-time.c
  1.10      +91 -8     ethereal/epan/ftypes/ftype-tvbuff.c
  1.10      +3 -2      ethereal/epan/ftypes/ftypes-int.h
  1.11      +20 -3     ethereal/epan/ftypes/ftypes.c
  1.19      +14 -3     ethereal/epan/ftypes/ftypes.h