aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/ngsniffer.c
AgeCommit message (Expand)AuthorFilesLines
2014-08-02Rename buffer_ routines to ws_buffer_ to avoid name collisions.Guy Harris1-3/+3
2014-07-15Only one buffer.c, please.Guy Harris1-1/+1
2014-05-24Allow wtap_read() and wtap_seek_read() to return records other than packets.Guy Harris1-0/+7
2014-05-23Revert "Allow wtap_read() and wtap_seek_read() to return non-packet records."Guy Harris1-13/+13
2014-05-23Allow wtap_read() and wtap_seek_read() to return non-packet records.Guy Harris1-13/+13
2014-05-09Revert "Refactor Wiretap"Guy Harris1-126/+123
2014-05-09Refactor WiretapMichael Mann1-123/+126
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
2014-01-26Drop support of Visual Studio 2005Alexis La Goutte1-8/+0
2014-01-22Don't write out packets that have a "captured length" bigger than we'reGuy Harris1-0/+7
2014-01-02No seek-read routines use the length argument, so eliminate it fromGuy Harris1-4/+2
2014-01-02Process the packet header and data in common code, shared by the readGuy Harris1-297/+246
2014-01-01If the uncompression buffers are empty, they have no data; set the countGuy Harris1-0/+4
2014-01-01Back out r54523 - more work is needed on it, and some testing found anGuy Harris1-12/+4
2013-12-31When reading sequentially, pass the packet data length toGuy Harris1-4/+12
2013-12-20Change G_GINT64_CONSTANT(xxxxU) to G_GUINT64_CONSTANT(xxxx)Jakub Zawadzki1-4/+4
2013-12-03wiretap: start using <wsutil/pint.h>Jakub Zawadzki1-32/+32
2013-11-29Expand macros: htoles(), htolel(), htolell()Jakub Zawadzki1-7/+7
2013-11-08The "file types" we have are actually combinations of types andGuy Harris1-5/+5
2013-07-16The new frame-based tvbuff code found that the DOS Sniffer code forGuy Harris1-8/+51
2013-06-16Have the seek-read routines take a Buffer rather than a guint8 pointerGuy Harris1-14/+17
2013-06-03file_skip() only needs to return a Boolean; if anybody cares what theGuy Harris1-3/+1
2013-01-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-1/+0
2013-01-04Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8105 :Pascal Quantin1-1/+1
2012-12-27Do not call wtap_file_read_unknown_bytes() orGuy Harris1-11/+10
2012-12-05Add a bunch of #defines for converting between tm_year/tm_mon/tm_mday toGuy Harris1-7/+22
2012-10-16Add wtap_pseudo_header union to wtap_pkthdr structure.Jakub Zawadzki1-8/+10
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-02Try to squelch warningsAnders Broman1-7/+7
2012-06-02Try to squelch warningsAnders Broman1-20/+20
2012-05-04ng_file_seek_rand() is supposed to return a Boolean; make it do so.Guy Harris1-3/+3
2012-05-04file_seek() used to be a wrapper around fseek() or gzseek(), both ofGuy Harris1-66/+40
2012-02-28Some more details about REC_HEADER1 and REC_V2DESC; REC_HEADER1 doesn'tGuy Harris1-2/+14
2012-02-25Add a presence flag field to the packet information structure filled inGuy Harris1-0/+1
2011-12-22The encapsulation following WTAP_ENCAP_ARCNET isGuy Harris1-0/+1
2011-12-13Rename WTAP_ERR_BAD_RECORD to WTAP_ERR_BAD_FILE; it really reports anyGuy Harris1-4/+4
2011-11-17Put back the check for dates that can be represented in DOS format theGuy Harris1-1/+1
2011-11-17Revert part of r39883 to avoid dereferencing a NULL pointer. Thanks Clang.Chris Maynard1-1/+1
2011-11-16Another place where we have to protect against MSVC's time-conversionGuy Harris1-1/+9
2011-09-01Use guint8 rather than guchar for raw octets and pointers to arrays ofGuy Harris1-7/+7
2011-05-10file_read() can return -1; don't just blindly add it to a previousGuy Harris1-3/+10
2011-04-27From Yaniv Kaul: some 'set but not used' compilation fixes;Bill Meier1-650/+652
2011-04-21Add a new WTAP_ERR_DECOMPRESS error, and use that for errors discoveredGuy Harris1-51/+63
2011-04-12"This file format can't be written to a pipe" and "this file formatGuy Harris1-1/+1
2011-04-08Change ng_file_read() to take only one size argument - and make it anGuy Harris1-27/+27
2011-04-06From Jakub Zawadzki:Guy Harris1-10/+10
2011-03-29Don't put a 65536 byte variable on the stack: instead, malloc/free it.Jeff Morriss1-44/+78
2011-02-16Return an error value for the new error return; it "can't happen" (butGuy Harris1-1/+7
2011-02-16Fix errors found by the Visual C++ analyzer.Gerald Combs1-1/+3