aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap
AgeCommit message (Expand)AuthorFilesLines
2013-06-10Allign the error messages.Anders Broman1-0/+1
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-06-06From Mark C. Brown via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=87...Pascal Quantin2-0/+4
2013-06-06Pull all the code that reads and processes the packet header intoGuy Harris1-266/+282
2013-06-06Pull the code for setting the struct wtap_pkthdr into aGuy Harris1-122/+112
2013-06-06Set the entire struct wtap_pkthdr, not just the pseudo-header, in theGuy Harris1-95/+93
2013-06-05The check for network_size < 4 is necessary only for those packets whereGuy Harris1-8/+27
2013-06-05Move the code that fills in the struct wtap_pkthdr (other than theGuy Harris1-65/+69
2013-06-04From Anthony Coddington:Anders Broman1-4/+12
2013-06-04Fix an unintialized-value-used warning that Valgrind detected in the captureJeff Morriss1-6/+6
2013-06-04Get rid of trailing white space and a few tabs.Jeff Morriss1-22/+22
2013-06-04Fix the wiretap fuzz failure reported in https://bugs.wireshark.org/bugzilla/...Jeff Morriss1-1/+7
2013-06-03file_skip() only needs to return a Boolean; if anybody cares what theGuy Harris3-6/+6
2013-06-03Initialize the whole hdr_info structure to please gcc 4.3.2Pascal Quantin1-2/+1
2013-06-03Put back a fix that earlier checkins lost.Guy Harris1-1/+2
2013-06-03Initialize some variables that GCC 4.7 complains about. I'm not 100% sureEvan Huus1-0/+3
2013-06-03When reading sequentially, skip past any ignored data at the end of theGuy Harris1-5/+15
2013-06-02Pass the read_rec_data routines a wtap_pkthdr pointer, and have themGuy Harris1-33/+37
2013-06-02Pull the code to Fill in the wtap_pkthdr structure into a commonGuy Harris1-12/+16
2013-06-02Move code to fill in the wtap_pkthdr into peektagged_process_header(),Guy Harris1-102/+87
2013-06-02Pull code to read and process packet headers intoGuy Harris1-134/+121
2013-06-02Pull code to read process packet headers into aGuy Harris1-39/+49
2013-06-02Initialize the frame_table_size field of the private data to 0 and theGuy Harris1-0/+9
2013-06-01When allocating the frame table for a NetMon file, use g_try_malloc(),Guy Harris1-1/+5
2013-06-01Move the record header processing code into a common routine, and readGuy Harris1-101/+123
2013-05-30From Chris Bontje via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8644 :Pascal Quantin3-3/+9
2013-05-18Fix "set but not used" compile warning turning errorJörg Mayer1-2/+0
2013-05-18Fill in the struct wtap_pkthdr in the seek-read routine.Guy Harris1-23/+35
2013-05-18In libpcap_process_header(), fill in what phdr points to, not wth->phdr.Guy Harris1-3/+3
2013-05-18Fill in the struct wtap_pkthdr in the seek-read routine.Guy Harris1-11/+17
2013-05-18In the pcapng seek-read routine, *don't* fill in wth->phdr; seek-readGuy Harris4-102/+103
2013-05-18Use g_array_index() to get at elements of the encapsulation table array;Guy Harris1-9/+7
2013-05-18Put the code to read trace record headers into a common routine used byGuy Harris1-55/+65
2013-05-17Don't pass globals as arguments to k12text_set_headers(), just use theGuy Harris1-7/+5
2013-05-17Rename k12text_set_pseudo_header() to k12text_set_headers() and have itGuy Harris1-13/+15
2013-05-17Prevent "'len' may be used uninitialized in this function" error when compili...Pascal Quantin1-1/+1
2013-05-17Pull some functions that fill in a struct wtap_pkthdr into common code,Guy Harris1-139/+83
2013-05-17Have iseries_parse_packet() fill in a struct wtap_pkthdr; that means itGuy Harris1-55/+41
2013-05-17If iseries_seek_next_packet() hits the EOF, *err will be set to 0; justGuy Harris1-13/+5
2013-05-17Get rid of duplicate code.Guy Harris1-13/+0
2013-05-17Pull the reading of record data and ATM post-processing into anotherGuy Harris1-46/+40
2013-05-17Add iptrace_process_rec_header_ routines to read record headers and fillGuy Harris1-151/+152
2013-05-17IPFIX records have a time stamp (and, according to RFC 5101, it's UNIXGuy Harris1-2/+2
2013-05-17We need ipfix_read_message_header() for the open routine; haveGuy Harris1-29/+46
2013-05-17Pull the code that fills in a wtap_pkthdr structure intoGuy Harris1-37/+34
2013-05-17Pull the record header processing code into i4b_read_rec_header(),Guy Harris1-112/+86
2013-05-17Pull code to fill in a wtap_pkthdr into a hcidump_process_header()Guy Harris1-29/+30