Ethereal-cvs: [Ethereal-cvs] cvs commit: ethereal packet-http.c packet-http.h packet-ipp.c pac

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, 9 Nov 2000 04:56:33 -0600 (CST)
guy         2000/11/09 04:56:33 CST

  Modified files:
    .                    packet-http.c packet-http.h packet-ipp.c 
                         packet-nntp.c packet-rsh.c packet-rtsp.c 
                         packet-telnet.c 
  Log:
  Tvbuffify the HTTP, NNTP, RSH, RTSP, and Telnet dissectors.
  
  Add "tvb_find_line_end()", to find a CR and/or LF-terminated line in a
  tvbuff and return its length and the offset of the character after the
  line end, for the use of those dissectors.
  
  Add "tvb_strncaseeql()", which is like "tvb_strneql()" except that it
  does a case-insensitive comparison.
  
  Revision  Changes    Path
  1.25      +93 -70    ethereal/packet-http.c
  1.3       +2 -2      ethereal/packet-http.h
  1.13      +2 -3      ethereal/packet-ipp.c
  1.14      +69 -70    ethereal/packet-nntp.c
  1.5       +30 -30    ethereal/packet-rsh.c
  1.22      +203 -128  ethereal/packet-rtsp.c
  1.18      +82 -83    ethereal/packet-telnet.c