aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/configure.in
AgeCommit message (Collapse)AuthorFilesLines
1999-03-28Jun-ichiro's IPv6 patch is merged in with ethereal and now uses the newGilbert Ramirez1-1/+3
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-03It's not a problem if we don't have GLib 1.1.x or later, so don'tGuy Harris1-3/+2
complain about it. svn path=/trunk/; revision=209
1999-03-01Added display filters to wiretap.Gilbert Ramirez1-4/+10
svn path=/trunk/; revision=198
1999-01-13* Modified Makefile.am and configure.in so that wiretap isn't built unlessGerald Combs1-1/+20
--with-wiretap is specified. svn path=/trunk/; revision=169
1998-11-21Pick up from Ethereal's "configure.in" the test to check whether we'reGuy Harris1-1/+10
running GCC and, if so, to add the "-Wall" flag. svn path=/trunk/; revision=116
1998-11-15Add support to wiretap for reading Sun "snoop" capture files.Guy Harris1-4/+1
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-13More patches from Guy to make wiretap compile better. I definitelyGilbert Ramirez1-1/+5
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-2/+4
different situations. I also fixed bootp so that is properly handles unknown BOOTP options. svn path=/trunk/; revision=85
1998-11-12A lengthy patch to add the wiretap library. Wiretap is not used by defaultGilbert Ramirez1-0/+16
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