aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/pcapng.c
AgeCommit message (Expand)AuthorFilesLines
2010-06-06Rename wtap_dump_file_write_all() to wtap_dump_file_write(), and haveGuy Harris1-80/+15
2010-04-21From Chris Maynard:Guy Harris1-2/+5
2010-04-05Treat the first block we read, when opening, specially:Guy Harris1-20/+60
2010-02-26Move the definitions of all the private data structures out ofGuy Harris1-22/+45
2010-02-23Move the declarations of wtap_pcap_encap_to_wtap_encap() andGuy Harris1-3/+12
2009-06-28Stop loading a pcapng file with multiple section header blocks.Michael Tüxen1-11/+19
2009-06-27Accept file snaplen larger than WTAP_MAX_PACKET_SIZE,Michael Tüxen1-6/+6
2009-06-27Another cleanup. We are now back to Ulf's originalMichael Tüxen1-28/+42
2009-06-27Cleanup. Should be included in Wireshark 1.2.1 and higher to keepMichael Tüxen1-5/+7
2009-06-27Add support for writing pcapng files with multipleMichael Tüxen1-29/+83
2009-06-27This patchMichael Tüxen1-15/+38
2009-06-27If all interfaces use the same encapsulation, useMichael Tüxen1-7/+18
2009-06-27This commitMichael Tüxen1-44/+108
2009-06-26Disable debug output.Michael Tüxen1-1/+1
2009-06-26* Allocate enough memory for reading a packet.Michael Tüxen1-22/+48
2009-06-18Fix for bug 3539: Address as signess issue for fcs_len.Michael Tüxen1-2/+2
2009-06-17Clean up a comment.Michael Tüxen1-2/+3
2009-06-16Whitespace cleanups.Michael Tüxen1-4/+4
2009-06-15Fix bug reported by Stig: per packet encapsulation forMichael Tüxen1-2/+2
2009-06-11When writing pcapng files use correct interface indexMichael Tüxen1-1/+1
2009-05-22From Aaron Turner: Use wtap_wtap_encap_to_pcap_encap() instead ofMichael Tüxen1-3/+3
2009-05-05One more debug output.Michael Tüxen1-0/+1
2009-05-03Use a dynamic glib array instead of a static C array forMichael Tüxen1-24/+23
2009-05-03Add support for multiple IDBs. They can used different encapsulations.Michael Tüxen1-35/+43
2009-05-03Improve handling of if_tsresol option.Michael Tüxen1-11/+23
2009-05-03Use WTAP_FILE_TSPREC_NSEC as tsprecision. This makes it independent from theMichael Tüxen1-24/+11
2009-05-03Remove code that should have been removed by my last commit.Michael Tüxen1-18/+4
2009-05-03Use WTAP_ENCAP_PER_PACKET. This is an intermediate step towards supportingMichael Tüxen1-31/+49
2009-05-02Fix the handling of non PB/EPB blocks after the initial SDB/IDB.Michael Tüxen1-2/+8
2009-04-27Use named constant.Michael Tüxen1-1/+1
2009-04-27Have the libpcap and pcap-NG code share the LINKTYPE_-to-WTAP_ENCAP_Guy Harris1-65/+9
2009-04-26Clean up some comments I forgot to remove.Michael Tüxen1-4/+2
2009-04-26Don't do pointer casting - some version of GCC complain about that.Guy Harris1-27/+43
2009-04-25There's no guarantee that "ll" is the right modifier to use forGuy Harris1-2/+2
2009-04-25- add support for interface statistic blockMichael Tüxen1-21/+165
2009-04-22Clean up some 64-bit issues.Guy Harris1-12/+12
2008-10-26Patch from bug #2986: "Fixes and enhancements in pcapng reader"Stephen Fisher1-5/+65
2008-07-09Don't cast a char[] into a guint32/64: the array may not be aligned correctly...Jeff Morriss1-2/+8
2008-07-09Reindent some to get things a bit more consistent/readable.Jeff Morriss1-367/+372
2008-02-20Really fix pcapng timestamp reading and writing this time.Stephen Fisher1-14/+5
2008-02-16Cast secs and nsecs correct.Stig Bjørlykke1-19/+19
2008-02-16Change if_tsaccur to if_tsresol and change timestamp reading/writingStephen Fisher1-19/+50
2008-02-07Removed some "statement not reached" warnings.Stig Bjørlykke1-4/+0
2008-01-26g_warning -> pcapng_debug and "switch it off" as default, so normal users won...Ulf Lamping1-65/+77
2008-01-22Use WTAP_MAX_PACKET_SIZE in place of 65535 in sanity check for snap lenStephen Fisher1-1/+1
2008-01-21as we have BSWAP64() now, at least read 64bit section_length (but currently u...Ulf Lamping1-3/+6
2008-01-20Introduce BSWAP64() and use it in the pcapng codeStephen Fisher1-4/+3
2008-01-19Make it compile on Win32 ;-)Ulf Lamping1-4/+4
2008-01-19Make it compile on OSX.Stig Bjørlykke1-4/+4
2008-01-19various enhancements:Ulf Lamping1-156/+436