Wireshark-commits: [Wireshark-commits] rev 36577: /trunk/ /trunk/: AUTHORS /trunk/wiretap/: file_ac
Date: Tue, 12 Apr 2011 02:40:19 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=36577

User: guy
Date: 2011/04/11 07:40 PM

Log:
 From Jakub Zawadzki: speed up random access to gzipped files, as per the
 zran.c example in the zlib source.
 
 This means that problems in the file's contents might not be reported
 when a packet is read, as long as there's no problem in the contents of
 the file up to the last bit of compressed data for the packet; we now
 check for errors after finishing the sequential read of the file, at
 least in some programs, so that shouldn't be an issue (the other
 programs need to be changed to do so as well).  This is necessary in
 order to be able to read all the packets we saw in the sequential pass;
 it also lets us get a few more packets from truncated files in some
 cases.

Directory: /trunk/
  Changes    Path          Action
  +2 -1      AUTHORS       Modified

Directory: /trunk/wiretap/
  Changes    Path               Action
  +7 -4      file_access.c      Modified
  +282 -51   file_wrappers.c    Modified
  +2 -0      file_wrappers.h    Modified
  +1 -0      wtap-int.h         Modified
  +10 -0     wtap.c             Modified