Ethereal-cvs: [Ethereal-cvs] cvs commit: ethereal packet-aodv.c packet-aodv6.c

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

From: Guy Harris <guy@xxxxxxxxxxxxxxxxxxx>
Date: Thu, 22 Aug 2002 02:32:23 -0500 (CDT)
guy         2002/08/22 02:32:23 CDT

  Modified files:
    .                    packet-aodv.c packet-aodv6.c 
  Log:
  From Andy Hood: in the AODV6 dissector, rename "ext_t" to "aodv6_ext_t",
  as "ext_t" is defined by a system header file on AIX.
  
  Get rid of the bitfields in "struct aodv_rrep" and "rrep_t", as some
  compilers don't allow any type other than "int" or "unsigned int" for
  bitfields (so "guint8" won't work), and as there's no guarantee of the
  order of bitfields in a structure.
  
  Make "rreq", "rrep", and "rerr" local to "dissect_aodv()" and
  "dissect_aodv6()", as they're not used outside them.
  
  Add a protocol tree item for the prefix size field in AODV and AODV6 replies.
  
  Revision  Changes    Path
  1.5       +13 -7     ethereal/packet-aodv.c
  1.4       +22 -14    ethereal/packet-aodv6.c