aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap
AgeCommit message (Expand)AuthorFilesLines
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
2011-04-10Rename ws_stat to ws_stat64, and make it take a pointer to a ws_statb64Guy Harris1-2/+2
2011-04-10Define ws_statb64 to be the appropriate "struct XXX" for aGuy Harris1-1/+1
2011-04-10Add ws_fstat64(), defined to be fstat on UN*X and _fstati64 on Windows.Guy Harris1-1/+1
2011-04-10Use AC_SYS_LARGEFILE to turn on large file support on platforms thatGuy Harris2-17/+5
2011-04-10Point to RFC 1952 as a description of the gzip file format.Guy Harris1-0/+10
2011-04-10Move the definition of the structure pointed to by a FILE_T intoGuy Harris2-32/+32
2011-04-08Just make the fh member of a wtap_dumper_t a void * for now, and, in allGuy Harris2-12/+14
2011-04-08Make wtap plugins build on windows again.Anders Broman1-0/+1
2011-04-08Change ng_file_read() to take only one size argument - and make it anGuy Harris1-27/+27
2011-04-08To squelch some compiler warnings, temporarily cast the argument toGuy Harris1-2/+12
2011-04-08From Jakub Zawadzki:Guy Harris5-229/+675
2011-04-07Be more picky about our sscanf integer field widths. Hopefully this willGerald Combs7-12/+12
2011-04-07From Jakub Zawadzki:Guy Harris2-5/+8
2011-04-06From Jakub Zawadzki:Guy Harris3-29/+10
2011-04-06From Jakub Zawadzki: fix the type of an argument.Guy Harris1-1/+1
2011-04-06From Jakub Zawadzki:Guy Harris32-199/+197
2011-03-31Check return value of file_seek(). Fixes CID 338.Chris Maynard1-1/+2
2011-03-31Use BSWAP16 instead of BSWAP32 for 16-bit values. Fixes CID's 1179 and 1180.Chris Maynard1-2/+2
2011-03-29Don't put a 196808 byte variable on the stack: instead, malloc/free it.Jeff Morriss1-59/+83
2011-03-29Don't put a 65536 byte variable on the stack: instead, malloc/free it.Jeff Morriss1-44/+78
2011-03-28More updates to the wtap_open_offline() comment.Guy Harris1-2/+4
2011-03-28Update a comment.Anders Broman1-4/+6