aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/file_wrappers.c
AgeCommit message (Expand)AuthorFilesLines
2014-11-19Wiretap: Added file_seek SEEK_END support.Stig Bjørlykke1-4/+13
2014-10-25Expand comments.Guy Harris1-6/+52
2014-10-08No need to set *err_info if there's no error.Guy Harris1-2/+0
2014-10-08Make sure we don't dereference a null pointer.Gerald Combs1-1/+2
2014-10-08Set err_info to null for errors that don't have an informaton string.Guy Harris1-1/+2
2014-09-22Try to fix some buildbot warningsMichal Labedzki1-0/+4
2014-09-10Various minor changes:Bill Meier1-1033/+1046
2014-09-09Fix some spelling & grammar.Bill Meier1-1/+1
2014-07-25Replace lseek/fstat by ws_lseek64/ws_fstat64Peter Wu1-2/+2
2014-03-19Add capture file reader/writer support for Lua so scripts can implement new c...Michael Mann1-0/+47
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
2014-02-03allow tshark reading from pipesPeter Hatina1-1/+2
2013-10-29simplify file_error()Martin Kaiser1-5/+4
2013-10-29allow err_info==NULL in file_error()Martin Kaiser1-1/+2
2013-07-23Don't cast away constness (except where APIs render that impossible).Guy Harris1-1/+1
2013-07-23Handle operating systems that are anticipating the day when files shouldGuy Harris1-1/+9
2013-06-03file_skip() only needs to return a Boolean; if anybody cares what theGuy Harris1-2/+4
2013-03-19From beroset:Anders Broman1-1/+1
2013-01-06Make some Boolean flags gbooleans, rename one of them to more clearlyGuy Harris1-51/+57
2013-01-06Clean up comment alignment.Guy Harris1-4/+4
2013-01-04replace "unsigned" datatype with "guint". Some mpeg files needed "unsigned i...Michael Mann1-16/+16
2012-12-21Microsoft CRT's _write expects an unsigned int.Gerald Combs1-1/+1
2012-12-21Squelch a warning - the code shouldn't ever let "have" get so large thatGuy Harris1-1/+1
2012-12-21Squelch implicit 64-bit-to-32-bit conversion warnings.Guy Harris1-8/+22
2012-12-05Fix another instance of a variable/parameter name "shadowing" a library funct...Bill Meier1-5/+5
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-2/+0
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
2012-06-05Casting a negative value to unsigned makes it positive; I'm not sureGuy Harris1-3/+16
2012-06-05Add another cast to make it build on Win32.Anders Broman1-1/+1
2012-06-05Making "had" a ptrdiff_t caused warnings, even if it eliminated aGuy Harris1-1/+6
2012-06-05From Jakub Zawadzki: when seeking backwards, if the seek will put you atGuy Harris1-1/+13
2012-06-02Try to squelch warningsAnders Broman1-5/+5
2012-06-02Try to squelch warningsAnders Broman1-8/+8
2012-06-01Sigh. There appears to be no way to get Windows to allow us to rename aGuy Harris1-4/+28
2012-05-24Keep track, in Wiretap, of whether the file is compressed, and provideGuy Harris1-3/+14
2012-05-19Z_BLOCK was added in zlib-1.2.0.5Jakub Zawadzki1-2/+8
2012-05-02Add a file_skip() routine to skip N bytes forward in the file - it'sGuy Harris1-0/+13
2012-05-02Put all the comments about the "don't check the CRC" flag together, andGuy Harris1-11/+10
2012-04-13Remove doubled semicolons and semicolons outside function.Jakub Zawadzki1-1/+1
2012-01-21Replace wtap_file_extensions_string() with a routine that returns aGuy Harris1-0/+31
2011-11-17Return *some* error if we end up trying to seek before the beginning ofGuy Harris1-1/+1
2011-06-15Strings are not writable, and the compiler warns that assigning aGuy Harris1-1/+1
2011-06-09The only place where we care about zlib is file_wrappers.c; includeGuy Harris1-0/+4
2011-05-09Note that compressed Windows Sniffer files might have a CRC, just notGuy Harris1-0/+9
2011-05-09Get rid of the fd member of a wth structure; the FILE_T's in thatGuy Harris1-2/+14
2011-05-09From Jakub Zawadzki: for file read progress bars, use the raw offset inGuy Harris1-0/+5
2011-05-09If a gzipped file's name ends in .caz, don't check the CRC - it'sGuy Harris1-2/+22
2011-04-29configure: remove test for gzclearerr (not used anymore), add test for inflat...Jakub Zawadzki1-3/+16
2011-04-21In file_wrappers.c, explicitly set err_info to null for all errors thatGuy Harris1-2/+17
2011-04-21Add a new WTAP_ERR_DECOMPRESS error, and use that for errors discoveredGuy Harris1-13/+36