aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/lanalyzer.c
AgeCommit message (Expand)AuthorFilesLines
2016-02-23Making wiretap option blocks more generic.Michael Mann1-1/+2
2015-11-09Call the dumper routine to finish write a file the "finish" routine.Guy Harris1-5/+5
2015-02-28Clean up timestamp handling.Guy Harris1-75/+59
2015-02-13Replace tabs by spaces when editor modelines has "expandtab"Bill Meier1-32/+32
2015-01-03Remove unnecessary includes from wiretap folderMartin Mathieson1-1/+0
2015-01-02Add "Editor modelines"; Adjust whitespace as needed.Bill Meier1-268/+281
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-1/+1
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-1/+1
2014-10-09Use an enum for the open-routine return value, as per Evan Huus's suggestion.Guy Harris1-16/+16
2014-10-07No need for WTAP_ERR_CANT_READ.Guy Harris1-5/+0
2014-10-07Make the code a bit more like the pre-new-APIs code.Guy Harris1-16/+6
2014-10-07Add some higher-level file-read APIs and use them.Guy Harris1-49/+37
2014-09-28Make the time stamp resolution per-packet.Guy Harris1-1/+1
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-1/+8
2014-05-23Revert "Allow wtap_read() and wtap_seek_read() to return non-packet records."Guy Harris1-11/+9
2014-05-23Allow wtap_read() and wtap_seek_read() to return non-packet records.Guy Harris1-9/+11
2014-05-09Revert "Refactor Wiretap"Guy Harris1-75/+71
2014-05-09Refactor WiretapMichael Mann1-71/+75
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
2014-01-22Don't write out packets that have a "captured length" bigger than we'reGuy Harris1-1/+7
2014-01-02No seek-read routines use the length argument, so eliminate it fromGuy Harris1-4/+2
2013-12-03wiretap: start using <wsutil/pint.h>Jakub Zawadzki1-14/+14
2013-11-29Expand macros: htoles(), htolel(), htolell()Jakub Zawadzki1-26/+26
2013-11-08(Trivial) whitespace cleanup (mostly trailing whitespace).Bill Meier1-1/+1
2013-11-08The "file types" we have are actually combinations of types andGuy Harris1-1/+1
2013-08-10Fix error when build with clang 3.0Alexis La Goutte1-1/+1
2013-06-17Merge "read record header" and "read packet data" routines into a singleGuy Harris1-21/+15
2013-06-16Have the seek-read routines take a Buffer rather than a guint8 pointerGuy Harris1-28/+6
2013-05-18Put the code to read trace record headers into a common routine used byGuy Harris1-55/+65
2013-03-25Wiretap file open routines should not free wth->priv on error, since thatEvan Huus1-10/+0
2013-03-17From beroset:Anders Broman1-5/+11
2012-12-27Do not call wtap_file_read_unknown_bytes() orGuy Harris1-22/+23
2012-10-16Add wtap_pseudo_header union to wtap_pkthdr structure.Jakub Zawadzki1-4/+4
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-1/+1
2012-05-04file_seek() used to be a wrapper around fseek() or gzseek(), both ofGuy Harris1-12/+1
2012-04-13Remove doubled semicolons and semicolons outside function.Jakub Zawadzki1-1/+1
2012-02-26For LANalyzer files, make the "File type name" be the file comment.Guy Harris1-7/+41
2012-02-25Add a presence flag field to the packet information structure filled inGuy Harris1-0/+2
2011-12-13Rename WTAP_ERR_BAD_RECORD to WTAP_ERR_BAD_FILE; it really reports anyGuy Harris1-3/+3
2011-12-13Check for a bogus record size. Fixes bug 6670.Guy Harris1-0/+10
2011-09-01Use guint8 rather than guchar for raw octets and pointers to arrays ofGuy Harris1-3/+3
2011-07-10Move the definitions of LANalyzer records to lanalyzer.c.Guy Harris1-14/+155
2011-07-10Define a structure for the record header, and read into that, and thenGuy Harris1-33/+18
2011-07-10At that point in the code, bytes_read isn't the total number of recordGuy Harris1-3/+3
2011-05-10file_read() can return -1; don't just blindly add it to a previousGuy Harris1-6/+23