aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/ngsniffer.c
AgeCommit message (Expand)AuthorFilesLines
2017-06-05Allow bigger snapshot lengths for D-Bus captures.Guy Harris1-1/+1
2016-09-28Use wtap_read_bytes() to skip over bytes when reading a record.Guy Harris1-13/+11
2016-07-24Fix shadow variable warnings.Michael Mann1-3/+3
2016-06-06*_stdup_printf -> strdup for "single string only" formatting.Michael Mann1-2/+2
2016-04-30Note some cases where we don't need to check the packet length.Guy Harris1-0/+5
2016-01-08Note that sometimes the packet time stamps are relative to the start time.Guy Harris1-2/+7
2015-12-21Squelch another warning.Guy Harris1-1/+1
2015-12-21Squelch some compiler warnings.Guy Harris1-3/+3
2015-12-21Rename some variables to make it a bit clearer what they are.Guy Harris1-31/+31
2015-12-20Add bounds checks and fix a length argument.Guy Harris1-15/+34
2015-11-17Misc minor issues caught by cppcheckEvan Huus1-2/+0
2015-11-09Call the dumper routine to finish write a file the "finish" routine.Guy Harris1-3/+3
2015-01-03Remove unnecessary includes from wiretap folderMartin Mathieson1-2/+0
2015-01-02Add "Editor modelines"; Adjust whitespace as needed.Bill Meier1-0/+13
2014-12-18Rename WTAP_ERR_REC_TYPE_UNSUPPORTED to WTAP_ERR_UNWRITABLE_REC_TYPE.Guy Harris1-1/+1
2014-12-18Handle "I can't map this for that file format" better.Guy Harris1-2/+2
2014-12-17Rename WTAP_ERR_UNSUPPORTED_ENCAP to WTAP_ERR_UNWRITABLE_ENCAP.Guy Harris1-1/+1
2014-12-17Use WTAP_ERR_UNSUPPORTED for input file stuff we can't handle.Guy Harris1-6/+6
2014-10-11Use the wtap_read_bytes{_or_eof}() routines.Guy Harris1-77/+57
2014-10-09Use an enum for the open-routine return value, as per Evan Huus's suggestion.Guy Harris1-13/+13
2014-10-08Use WTAP_ERR_DECOMPRESS for decompression errors.Guy Harris1-4/+4
2014-10-08Use WTAP_ERR_BAD_FILE for malformed compressed data in DOS Sniffer files.Guy Harris1-7/+13
2014-10-07No need for WTAP_ERR_CANT_READ.Guy Harris1-8/+0
2014-10-07Make the code a bit more like the pre-new-APIs code.Guy Harris1-3/+3
2014-10-07Add some higher-level file-read APIs and use them.Guy Harris1-47/+13
2014-10-04Use some macros to clean up the Snifer decompression code.Guy Harris1-92/+91
2014-09-28Make the time stamp resolution per-packet.Guy Harris1-1/+1
2014-09-24Fix presumed cut-and-pasteo.Guy Harris1-3/+2
2014-09-16Fix spelling: cant-->can't, wont-->won't, etcBill Meier1-1/+1
2014-09-11Add some additional checks in SnifferDecompress().Guy Harris1-10/+29
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