aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/Makefile.in
AgeCommit message (Collapse)AuthorFilesLines
1999-05-12Changed wiretap rules so that ordinary user doesn't need bison and flexGilbert Ramirez1-31/+13
if they just compile the source and don't modify any source files. svn path=/trunk/; revision=280
1999-05-01Fixed 0.6.0 packaging problems.Gilbert Ramirez1-151/+170
svn path=/trunk/; revision=252
1999-03-28Jun-ichiro's IPv6 patch is merged in with ethereal and now uses the newGilbert Ramirez1-4/+6
proto*() functions. The configure script tries to use ipv6 name resolution if it knows the type of ipv6 stack the user has (this can be avoided with the --disable-ipv6 switch) Additionally, the configure script now deals with wiretap better. If the user doesn't want to compile wiretap, the wiretap is never visited. A few unnecessary #includes were removed from some wiretap files, and a CPP macro was moved from bpf.c to wtap.h. svn path=/trunk/; revision=229
1999-03-02Have "rt-scanner.l" and "rt-grammar.y" depend on the filter descriptionGuy Harris1-2/+2
files used to generate them. svn path=/trunk/; revision=205
1999-03-01Add an "acinclude.m4", from which "aclocal.m4" is made.Guy Harris1-3/+3
Add "HAVE_GLIB10" to "acconfig.h", so that all the "auto*" stuff is happy. svn path=/trunk/; revision=201
1999-03-01Added display filters to wiretap.Gilbert Ramirez1-26/+144
svn path=/trunk/; revision=198
1999-02-20Add support for Cinco Networks NetXRay - which is, after their acquisionGuy Harris1-3/+5
by Network General (subsequently merged with McAfee Associates into Network Associates), called "Sniffer Basic". A similar format appears to be used by the Windows Sniffer Pro. svn path=/trunk/; revision=194
1999-01-17Add suppport for Microsoft Network Monitor Ethernet capture files.Guy Harris1-3/+5
svn path=/trunk/; revision=171
1999-01-13* Modified Makefile.am and configure.in so that wiretap isn't built unlessGerald Combs1-1/+6
--with-wiretap is specified. svn path=/trunk/; revision=169
1999-01-04* Final commit for version 0.5.1Gerald Combs1-0/+1
* Added RPM .spec file (Martin Maciaszek) * Added Martin to AUTHORS svn path=/trunk/; revision=149
1999-01-02Added the iptrace (AIX's packet-capture tool) file format to wiretap.Gilbert Ramirez1-3/+5
This necessitated a change in ethereal because iptrace supports multi-NIC packet capturing, including multi-datalink-type capturing. svn path=/trunk/; revision=145
1998-11-17Add the header files to "libwiretap_a_SOURCES", so they get included ifGuy Harris1-1/+9
you do "make dist". svn path=/trunk/; revision=100
1998-11-15Add support to wiretap for reading Sun "snoop" capture files.Guy Harris1-2/+5
That requires that, in the packet-reading loop, we pass to the callback routine the offset in the file of a packet's data, because we can no longer compute that offset by subtracting the size of the captured packet data from the offset in the file after the data was read - "snoop" may stick padding in after the packet data to align packet headers on 4-byte boundaries. Doing that required that we arrange that we do that for "libpcap" capture files as well; the cleanest way to do that was to write our own code for reading "libpcap" capture files, rather than using the "libpcap" code to do it. Make "wtap_dispatch_cb()" and "pcap_dispatch_cb()" static to "file.c", as they're not used elsewhere. If we're using wiretap, don't define in "file.h" stuff used only when we're not using wiretap. Update the wiretap README to reflect Gilbert's and my recent changes. Clean up some memory leaks in "wiretap/lanalyzer.c" and "wiretap/ngsniffer.c", where the capture-file-format-specific data wasn't freed if the open failed. svn path=/trunk/; revision=91
1998-11-13Now that I know where to find the file format of Sniffer trace files, wiretapGilbert Ramirez1-4/+4
now *properly* reads Sniffer files. I now know the field in the file header which denotes link type. svn path=/trunk/; revision=88
1998-11-13More patches from Guy to make wiretap compile better. I definitelyGilbert Ramirez1-0/+3
need to learn more about autoconf/automake. :) svn path=/trunk/; revision=87
1998-11-12Added a patch to wiretap from Guy Harris to help compile wiretap inGilbert Ramirez1-35/+90
different situations. I also fixed bootp so that is properly handles unknown BOOTP options. svn path=/trunk/; revision=85
1998-11-12I added the LANalzyer file format to wiretap. I cleaned up some code in theGilbert Ramirez1-2/+4
wiretap functions to be more generic and therefore allow an easier integration of more packet-capture file types. I also put in all the GPL copyrights in the wiretap code. svn path=/trunk/; revision=83
1998-11-12A lengthy patch to add the wiretap library. Wiretap is not used by defaultGilbert Ramirez1-0/+282
because it is still in its infancy, but it can be compiled in optionally. The library exists in its own subdirectory ethereal/wiretap. This patch also edits all the packet-*.c files to remove the #include <pcap.h> line which is unnecessary in these files. In the ethereal code, file.c is the most heavily modified with #ifdef WITH_WIRETAP lines for the optional library. svn path=/trunk/; revision=82