aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/pcapng.c
AgeCommit message (Expand)AuthorFilesLines
2011-05-11Fix a wrong name in a debug print statement.Michael Tüxen1-1/+1
2011-04-22Cast away warnings about "struct sockaddr" -> "struct sockaddr_XXX"Guy Harris1-2/+10
2011-04-21Add a new WTAP_ERR_DECOMPRESS error, and use that for errors discoveredGuy Harris1-23/+23
2011-04-19Unbreak live capture using pcapng.Michael Tüxen1-1/+5
2011-04-12"This file format can't be written to a pipe" and "this file formatGuy Harris1-1/+1
2011-04-06From Jakub Zawadzki:Guy Harris1-15/+15
2011-03-31Use BSWAP16 instead of BSWAP32 for 16-bit values. Fixes CID's 1179 and 1180.Chris Maynard1-2/+2
2011-03-25Make it build on Windows 7Anders Broman1-1/+1
2011-03-24Add a missing include.Gerald Combs1-2/+6
2011-03-24Add initial pcapng name resolution record support. Wireshark has readGerald Combs1-2/+248
2011-02-07Check for a large packet_len. Fixes a bug reported by HuzaifaGerald Combs1-0/+12
2011-02-04Fix indentation.Guy Harris1-1/+1
2011-02-04Put more data into the "additional error information" messages.Guy Harris1-11/+8
2011-02-04Use g_strdup() instead of strdup()Jeff Morriss1-37/+37
2011-02-03From Huzaifa Sidhpurwala of the Red Hat Security Response Team: Don'tGerald Combs1-0/+2
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