Ethereal-cvs: [Ethereal-cvs] cvs commit: ethereal dftest.c .cvsignore Makefile.am configure.in

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

From: Gilbert Ramirez Jr. <gram@xxxxxxxxxxxxxxxxxxx>
Date: Thu, 1 Feb 2001 14:21:15 -0600 (CST)
gram        2001/02/01 14:21:15 CST

  Modified files:
    .                    .cvsignore Makefile.am configure.in 
                         file.c file.h packet-x11.c tethereal.c 
  Added files:
    .                    dftest.c 
  Log:
  Create a more modular type system for the FT_* types. Put them
  into epan/ftypes.
  
  Re-write display filter routines using Lemon parser instead of yacc.
  Besides using a different tool, the new grammar is much simpler, while
  the display filter engine itself is more powerful and more easily extended.
  
  Add dftest executable, to test display filter "bytecode" generation.
  Add option to "configure" to build dftest or randpkt, both of which are not
  built by default.
  
  Implement Ed Warnicke's ideas about dranges in the new display filter and
  ftype code.
  
  Remove type FT_TEXT_ONLY in favor of FT_NONE, and have protocols registered
  as FT_PROTOCOL. Thus, FT_NONE is used only for simple labels in the proto tree,
  while FT_PROTOCOL is used for protocols. This was necessary for being
  able to make byte slices (ranges) out of protocols, like "frame[0:3]"
  
  Win32 Makefile.nmake's will be added tonight.
  
  Revision  Changes    Path
  1.14      +1 -0      ethereal/.cvsignore
  1.281     +44 -6     ethereal/Makefile.am
  1.113     +33 -3     ethereal/configure.in
  1.229     +14 -15    ethereal/file.c
  1.80      +5 -8      ethereal/file.h
  1.17      +11 -11    ethereal/packet-x11.c
  1.64      +5 -5      ethereal/tethereal.c