aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap
AgeCommit message (Expand)AuthorFilesLines
2012-06-02Try to squelch warningsAnders Broman7-23/+23
2012-06-02Try to squelch warningsAnders Broman1-20/+20
2012-06-02Try to squelch warningsAnders Broman9-35/+35
2012-06-01Export those file_ routines that Wiretap plugins would use (othersGuy Harris1-0/+8
2012-06-01TShark doesn't need wtap_fdreopen(), as it doesn't do saves and thusGuy Harris2-81/+28
2012-06-01Move wtap_fdreopen() to file_access.c for now, as it requires many ofGuy Harris2-118/+114
2012-06-01Need fcntl.h for the O_ #defines on Windows.Guy Harris1-0/+4
2012-06-01Sigh. There appears to be no way to get Windows to allow us to rename aGuy Harris6-21/+171
2012-05-28Interface lists currently have to be constructed in the open routineGuy Harris1-12/+17
2012-05-27Clean up indentation (remove tabs from one structure definition).Guy Harris1-26/+26
2012-05-27vwr_read_rec_header()'s return value is used only to distinguish successGuy Harris1-16/+9
2012-05-25In ns_hrtime2nsec(), cast "val" to guint64 to fix Coverity CID 702389 Uninten...Chris Maynard1-1/+1
2012-05-24From Stephen Donnelly:Anders Broman3-35/+60
2012-05-24Keep track, in Wiretap, of whether the file is compressed, and provideGuy Harris5-3/+23
2012-05-23From Stephen Donnelly:Anders Broman1-1/+39
2012-05-23In Windows, in the Save As and Export Selected Packets dialog, appendGuy Harris2-6/+12
2012-05-19Z_BLOCK was added in zlib-1.2.0.5Jakub Zawadzki1-2/+8
2012-05-16Fix a bunch of uninitialized variables found by Coverity Scan. CIDsGerald Combs2-5/+5
2012-05-11Use "%parse-param" instead of a global variable. Fixes a scan-buildGerald Combs1-31/+31
2012-05-05Directly calculate the time stamp based on the offset in the stream fromGuy Harris1-20/+18
2012-05-04Clean up indentation.Guy Harris1-31/+30
2012-05-04ng_file_seek_rand() is supposed to return a Boolean; make it do so.Guy Harris1-3/+3
2012-05-04file_seek() used to be a wrapper around fseek() or gzseek(), both ofGuy Harris45-333/+172
2012-05-04Fix comments.Guy Harris1-2/+2
2012-05-04Get rid of declaration of non-existent routine.Guy Harris1-1/+0
2012-05-04Make everything static that doesn't need to be exported.Guy Harris1-19/+19
2012-05-04Fix indentation.Guy Harris1-3/+3
2012-05-02Add a file_skip() routine to skip N bytes forward in the file - it'sGuy Harris2-7/+19
2012-05-02Put all the comments about the "don't check the CRC" flag together, andGuy Harris1-11/+10
2012-05-02Use WTAP_ENCAP_IEEE_802_11_xxx for all the "802.11 plus radio header"Guy Harris5-95/+30
2012-05-01Remove unnecessary null-pointer check.Guy Harris1-4/+2
2012-05-01Fix 2 redundant redeclaration warnings and a bug where logical AND (&&) was i...Chris Maynard1-4/+1
2012-04-29Add ".dmp" as a suffix for pcap files of various flavors. Add ".ntar"Guy Harris1-8/+8
2012-04-28Remove _U_ from arguments that are actually used.Guy Harris1-5/+5
2012-04-28If xml_get_int() fails, bail immediately; don't use the variable itGuy Harris1-14/+18
2012-04-28Get rid of some unnecessary assignments, to remove warnings from theGuy Harris1-5/+1
2012-04-26Remove duplicate comment.Guy Harris1-2/+0
2012-04-26Add a pcoreytohll() macro to extract "Corey-endian" 64-bit quantities,Guy Harris1-27/+24
2012-04-26Use the pletohXX macros when fetching little-endian values.Guy Harris1-8/+5
2012-04-26Put the pseudo-header information for Veriwave packets into the bufferGuy Harris2-37/+196
2012-04-26Use pntohs(), pntoh24(), and pntohl() to fetch big-endian data from theGuy Harris1-40/+32
2012-04-26Global variables considered harmful. Move all the per-capture-fileGuy Harris1-407/+421
2012-04-26Put pcapng_open() right after libpcap_open(); pcap and pcap-ng are ourGuy Harris1-2/+2
2012-04-26If you get an I/O error when looking for the FPGA version, return -1, soGuy Harris1-16/+23
2012-04-25Return 0 if doesn't match signature of vwr files.Martin Mathieson1-2/+4
2012-04-25Add wtap_dump_fdopen_ngAnders Broman1-0/+1
2012-04-25Handle wtap_dump_fdopen() as wtap_dump_open() eg callAnders Broman2-37/+79
2012-04-25Remove some unnecessary includes and fix some indentation.Martin Mathieson1-8/+7
2012-04-22Fix a buildbot compile warning.Bill Meier1-1/+1
2012-04-22Various minor cleanup:Bill Meier1-200/+222