aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/k12text.l
AgeCommit message (Expand)AuthorFilesLines
2014-12-19Get rid of some accidentally-checked-in debugging stuff.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-2/+2
2014-12-17Use WTAP_ERR_UNSUPPORTED for input file stuff we can't handle.Guy Harris1-3/+3
2014-12-17Clean up handling of files without a known encapsulation.Guy Harris1-16/+24
2014-10-10Cast size_t to to gulong as the length argument to g_snprintf().Guy Harris1-3/+3
2014-10-09Use an enum for the open-routine return value, as per Evan Huus's suggestion.Guy Harris1-4/+4
2014-09-28Make the time stamp resolution per-packet.Guy Harris1-1/+1
2014-09-06Make the count of bytes read from the file 64 bits.Guy Harris1-1/+1
2014-08-02Rename buffer_ routines to ws_buffer_ to avoid name collisions.Guy Harris1-4/+4
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/+1
2014-05-23Revert "Allow wtap_read() and wtap_seek_read() to return non-packet records."Guy Harris1-8/+8
2014-05-23Allow wtap_read() and wtap_seek_read() to return non-packet records.Guy Harris1-8/+8
2014-05-09Revert "Refactor Wiretap"Guy Harris1-29/+26
2014-05-09Refactor WiretapMichael Mann1-26/+29
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/+6
2014-01-02No seek-read routines use the length argument, so eliminate it fromGuy Harris1-1/+1
2014-01-02Don't use the length argument to the seek-read routine; no otherGuy Harris1-11/+3
2013-12-14Cast away shorten-64-to-32 warnings.Gerald Combs1-5/+5
2013-11-08Looks like r53166 was not compile tested. Now k12text.l compiles again.Jörg Mayer1-2/+2
2013-11-08The "file types" we have are actually combinations of types andGuy Harris1-2/+2
2013-06-16Have the seek-read routines take a Buffer rather than a guint8 pointerGuy Harris1-2/+3
2013-05-17Don't pass globals as arguments to k12text_set_headers(), just use theGuy Harris1-7/+5
2013-05-17Rename k12text_set_pseudo_header() to k12text_set_headers() and have itGuy Harris1-13/+15
2013-02-10Add %option noinput to a bunch of Flex files, as we aren't using theGuy Harris1-0/+5
2013-01-04Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8105 :Pascal Quantin1-4/+8
2012-10-16Add wtap_pseudo_header union to wtap_pkthdr structure.Jakub Zawadzki1-4/+3
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-2/+0
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-10/+33
2012-02-25Add a presence flag field to the packet information structure filled inGuy Harris1-0/+2
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-1/+0
2012-01-14wth->phdr.pkt_encap isn't set on a seek-and-read; pass the encapsulationGuy Harris1-4/+4
2012-01-14WTAP_ENCAP_UNKNOWN should never appear as an actual encapsulation type,Guy Harris1-2/+0
2011-12-13Rename WTAP_ERR_BAD_RECORD to WTAP_ERR_BAD_FILE; it really reports anyGuy Harris1-3/+3
2011-11-18Fail if somebody tries to write out a packet with an unsupportedGuy Harris1-7/+16
2011-11-16OK, this should do it.Guy Harris1-1/+1
2011-11-16Fix build on Windows.Guy Harris1-2/+2
2011-11-16Another place where we have to protect against MSVC's time-conversionGuy Harris1-0/+8
2011-09-01Use guint8 rather than guchar for raw octets and pointers to arrays ofGuy Harris1-1/+1
2011-04-17Mark err as unused in k12text_dump_open().Stig Bjørlykke1-1/+1
2011-04-12"This file format can't be written to a pipe" and "this file formatGuy Harris1-7/+1
2011-03-29Don't put a 196808 byte variable on the stack: instead, malloc/free it.Jeff Morriss1-59/+83
2011-02-04Set *err before *err_info - that's how it's done in most other modules.Guy Harris1-4/+4
2010-06-06Don't use fwrite directly when writing a dump file; call it throughGuy Harris1-20/+18
2010-02-26Move the definitions of all the private data structures out ofGuy Harris1-11/+0
2010-01-18Fix gcc -Wshadow warnings ....Bill Meier1-33/+33