aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/pcapng.c
AgeCommit message (Expand)AuthorFilesLines
2013-11-08The "file types" we have are actually combinations of types andGuy Harris1-5/+5
2013-09-29Get rid of a redundant check - pcapng_read_packet_block() already checksGuy Harris1-89/+74
2013-09-28The pcap-ng spec says the captured length is the minimum of theGuy Harris1-23/+40
2013-09-28Actually, the captured length must be the minimum of:Guy Harris1-8/+32
2013-09-28Fix cut-and-pasteo.Guy Harris1-1/+1
2013-09-28Correctly calculate the captured length in a Simple Packet Block -Guy Harris1-3/+1
2013-09-28In a Simple Packet Block, the captured length isn't the block lengthGuy Harris1-5/+7
2013-09-28There's no interface ID in a Simple Packet Block.Guy Harris1-10/+16
2013-09-22Fix some typos, indentation. Don't try to write the NRB if the pointer to ourEvan Huus1-139/+139
2013-09-22Remove unused parameter.Evan Huus1-3/+3
2013-09-22Turn off debuging.Anders Broman1-1/+1
2013-09-22Get rid of struct addrinfo, use the hastables for name resolution instead.Anders Broman1-92/+112
2013-08-12Fix error when enable "debug" in wiretap/pcapng.c fileAlexis La Goutte1-1/+1
2013-06-21Fix some pointer-signedness (well, signedness of what the pointer pointsGuy Harris1-4/+4
2013-06-16Have the seek-read routines take a Buffer rather than a guint8 pointerGuy Harris1-37/+15
2013-06-09libwireshark's add_new_ipv4() and add_new_ipv6() now silently ignoreGuy Harris1-16/+3
2013-06-09Don't treat zero-length names in the NRB as errors, just silently ignoreGuy Harris1-11/+17
2013-06-07Use g_try_malloc() for some memory allocations, and return an "out ofGuy Harris1-5/+21
2013-06-07Prevent attempts to allocate huge amounts of memory by imposing anGuy Harris1-23/+141
2013-05-18In the pcapng seek-read routine, *don't* fill in wth->phdr; seek-readGuy Harris1-17/+10
2013-03-19From beroset:Anders Broman1-1/+1
2012-12-27Do not call wtap_file_read_unknown_bytes() orGuy Harris1-1/+1
2012-12-23Fix syntax error showing up when using debug ouput.Michael Tüxen1-1/+1
2012-12-22Add support for writing the packet block flags for pcapng.Michael Tüxen1-24/+38
2012-12-21Squelch implicit 64-bit-to-32-bit conversion warnings.Guy Harris1-3/+3
2012-10-16Add wtap_pseudo_header union to wtap_pkthdr structure.Jakub Zawadzki1-4/+5
2012-10-12Use seasonal allocation for name resolution. This effectively scrubs ourGerald Combs1-1/+1
2012-10-12If we see an SHB after we've read the first SHB, report that as anGuy Harris1-79/+113
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-2/+0
2012-07-30Avoid a division by zero due to overflow.Michael Tüxen1-2/+2
2012-07-27Some more debug info.Michael Tüxen1-0/+5
2012-07-27Handle the case where no IDB follows the SHB. This fixes part ofMichael Tüxen1-34/+30
2012-07-11Don't ask for information about an interface greater than the maximumGuy Harris1-0/+7
2012-07-10When writing an EPB, calculate the time stamp based on the resolutionGuy Harris1-15/+22
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
2012-06-08Fix some dead assignments.Gerald Combs1-1/+0
2012-06-02Try to squelch warningsAnders Broman1-5/+5
2012-05-04file_seek() used to be a wrapper around fseek() or gzseek(), both ofGuy Harris1-15/+10
2012-04-15Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7048Michael Tüxen1-10/+40
2012-04-15Whitespace cleanup (done while debugging).Michael Tüxen1-65/+65
2012-03-26Print the correct block size in a debug message.Gerald Combs1-1/+1
2012-03-21Disable debug.Anders Broman1-1/+1
2012-03-20Try to make the buildbot happy.Anders Broman1-10/+10
2012-03-20Write ISB:s if we have them.Anders Broman1-32/+173
2012-03-15Initialize the new num_stat_entries and interface_statistics members ofGuy Harris1-4/+7
2012-03-15If we have one ISB, display the droped count from it.Anders Broman1-3/+6
2012-03-15- Store ISB data.Anders Broman1-4/+38
2012-03-13From Jose Pedro Oliveira:Anders Broman1-1/+0
2012-03-13Add data structure to hold information from ISB:sAnders Broman1-2/+3
2012-03-12From Jose Pedro Oliveira:Anders Broman1-2909/+2909