aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap
AgeCommit message (Expand)AuthorFilesLines
2013-06-28Use newly assigned DLT for PDU export functionalityPascal Quantin3-0/+12
2013-06-21Fix some pointer-signedness (well, signedness of what the pointer pointsGuy Harris3-10/+10
2013-06-19Clarify (a V1.0 file might have a single zero byte at the end of theGuy Harris1-2/+7
2013-06-18Slight stylistic cleanup - most routines, when defined, have no spaceGuy Harris2-2/+2
2013-06-18Note that NetScaler trace files are page-oriented, with records notGuy Harris1-4/+16
2013-06-18Don't limit the on-the-wire length of packets to 64KB, there are larger packetsEvan Huus1-16/+3
2013-06-17Put the code to fill in the struct wtap_pkthdr and to read the packetGuy Harris1-33/+31
2013-06-17Merge more of the read and seek-read code paths.Guy Harris1-29/+25
2013-06-17Merge "read record header" and "read packet data" routines into a singleGuy Harris26-989/+604
2013-06-16Make the libwiretap Buffer routines usable from C++, and fix the C++ UIGuy Harris1-0/+8
2013-06-16Have the seek-read routines take a Buffer rather than a guint8 pointerGuy Harris51-989/+647
2013-06-15Pull some of the code to set the struct wtap_pkthdr intoGuy Harris1-47/+50
2013-06-15Fill in at least some of the struct wtap_pkthdr in both the read andGuy Harris1-7/+14
2013-06-14Rename radcom_process_rec_header() to radcom_process_rec_header() andGuy Harris1-102/+77
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