aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap
AgeCommit message (Expand)AuthorFilesLines
2011-05-11Check our original record length. Fixes a crash bug found by HuzaifaGerald Combs1-0/+10
2011-05-11Fix a wrong name in a debug print statement.Michael Tüxen1-1/+1
2011-05-11Export wtap_fstat()Tomas Kukosa1-0/+1
2011-05-10file_read() can return -1; don't just blindly add it to a previousGuy Harris1-23/+36
2011-05-10file_read() can return -1; don't just blindly add it to a previousGuy Harris4-51/+53
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 Harris8-24/+45
2011-05-09From Jakub Zawadzki: for file read progress bars, use the raw offset inGuy Harris4-11/+9
2011-05-09If a gzipped file's name ends in .caz, don't check the CRC - it'sGuy Harris2-11/+30
2011-05-03Note what NetMon 3 actually uses various types for.Guy Harris1-5/+5
2011-05-03Set the pseudo-header regardless of whether we have a trailer or not.Guy Harris1-42/+47
2011-05-03It appears that, in NetMon 802.11 captures, management frames have anGuy Harris1-104/+176
2011-05-03Squelch a compiler warning - but note, in a comment, a real problem theGuy Harris1-1/+2
2011-05-03Fix indentation (tab stops are not guaranteed to be every 4 spaces).Guy Harris1-352/+352
2011-05-03From Tom Brezinski - fix for bug 5869:Guy Harris4-231/+452
2011-04-29configure: remove test for gzclearerr (not used anymore), add test for inflat...Jakub Zawadzki1-3/+16
2011-04-28From Hans-Christoph Schemmel:Anders Broman3-1/+7
2011-04-28#include <stdlib.h> not needed;Bill Meier1-306/+305
2011-04-27From Yaniv Kaul: some 'set but not used' compilation fixes;Bill Meier1-650/+652
2011-04-27Based upon a patch from Yaniv Kaul: Comment out unused assignmeent/variables;Bill Meier1-34/+38
2011-04-22*Properly* get rid of bogus cast.Guy Harris1-1/+1
2011-04-22Cast away alignment warnings about pointers where we never actuallyGuy Harris1-4/+12
2011-04-22Cast away warnings about "struct sockaddr" -> "struct sockaddr_XXX"Guy Harris1-2/+10
2011-04-22Make all the fields in the various structures just arrays of bytes, soGuy Harris1-100/+108
2011-04-21In a dump_open routine, you don't need to seek to the beginning of theGuy Harris2-8/+4
2011-04-21In file_wrappers.c, explicitly set err_info to null for all errors thatGuy Harris3-22/+21
2011-04-21Add a new WTAP_ERR_DECOMPRESS error, and use that for errors discoveredGuy Harris46-547/+656
2011-04-20Always check whether NEXT() failed - and rename it to GZ_GETC(), as itGuy Harris1-44/+169
2011-04-20Sigh. The "data" element of a GArray is, alas, a "gchar *", not a "voidGuy Harris1-4/+4
2011-04-20pntohll() takes a guint8 * as an argument; there's no need to cast to aGuy Harris1-1/+1
2011-04-19Unbreak live capture using pcapng.Michael Tüxen1-1/+5
2011-04-18Wrap actual_len inside #ifdef DEBUG_K12 to avoid gcc 4.6.0 warning reported byChris Maynard1-2/+8
2011-04-18Update Motonori Shindo's email address at the author's request. Fixes bug 5840.Chris Maynard3-3/+3
2011-04-17Mark err as unused in k12text_dump_open().Stig Bjørlykke1-1/+1
2011-04-15Return ENOMEM if we run out of memory. (We're either running on UN*X,Guy Harris1-3/+7
2011-04-14Export new file_...() functions from libwiretap.dllTomas Kukosa1-0/+9
2011-04-14Check for _setmode() failing, Just In Case. Squelches some MSVC staticGuy Harris1-10/+32
2011-04-12#if 0 out some unused variables; we may make use of them later, but thisGuy Harris1-0/+16
2011-04-12Now that wtap_read() checks for delayed errors on EOF, there's no needGuy Harris2-32/+7
2011-04-12From Jakub Zawadski: some small fixes.Guy Harris1-6/+5
2011-04-12Update and expand some comments.Guy Harris1-35/+59
2011-04-12A parameter isn't used if ZLIB isn't enabled.Martin Mathieson1-1/+1
2011-04-12If we hit an EOF - wth->subtype_read returns FALSE, but sets *err to 0 -Guy Harris1-1/+13
2011-04-12From Jakub Zawadzki: speed up random access to gzipped files, as per theGuy Harris5-55/+302
2011-04-12Allow wtap_sequential_close() and wtap_close() to return an error; thisGuy Harris2-7/+32
2011-04-12"This file format can't be written to a pipe" and "this file formatGuy Harris37-136/+76
2011-04-11Use ws_open(), not open(), so we handle UTF-8 pathnames on Windows.Guy Harris8-21/+8
2011-04-11Remove a no-longer-valid comment (we're not using zlib's I/O routines,Guy Harris1-3/+0
2011-04-11Don't use the zlib I/O routines for writing compressed files, either;Guy Harris3-21/+282
2011-04-10To fill in a ws_statb64, you must use ws_fstat64.Guy Harris1-1/+1