aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2002-05-09Merge the work in Novell_NCP_branch into the mainline code.Gilbert Ramirez1-136/+95
A little work still needs to be done on the new NCP dissector -- make some of the COL_INFO texts more useful, handle a Unicode issue, and modify some of the cases that use "request conditions". But the NCP dissector as it stands is very usable now. Note: I didn't merge in the PROTO_LENGTH_UNTIL_END macro... I wanted to think about the various possible macros and review an email conversation I had with Guy on the subject. svn path=/trunk/; revision=5432
1999-09-11Added support for Lucent/Ascend packet traces. The MAX and Pipeline routerGerald Combs1-106/+231
family has a set of debug commands that allow you to log the traffic on a WAN or dialup connection as text, e.g. RECV-iguana:241:(task: B04E12C0, time: 1975358.50) 15 octets @ 8003D634 [0000]: FF 03 00 3D C0 06 C9 96 2D 04 C1 72 00 05 B8 Created wtap_seek_read() which parses the textual data for and Ascend trace, and does a normal fseek() and fread() for any other file type. The fseek()/fread() pairs in file.c were replaced with the new function. svn path=/trunk/; revision=652
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-3/+6
* Added RPM .spec file (Martin Maciaszek) * Added Martin to AUTHORS svn path=/trunk/; revision=149
1998-12-29* Added Joerg Mayer's Vines patchGerald Combs1-1/+1
* Added Joerg to the AUTHORS file * Added Guy's bitfield decode patch * Fixed time output svn path=/trunk/; revision=142
1998-11-18* Don't build wiretap if it isn't configured.Gerald Combs1-0/+353
* Bump the version to 0.5.0 svn path=/trunk/; revision=106
1998-11-17Un-comment "AC_CONFIG_SUBDIRS()", so that it'll run "configure" in theGuy Harris1-345/+0
"wiretap" subdirectory, and thus leave a "config.status" file around so that one of the "auto{make,configure,header}" guys doesn't complain when rebuilding stuff that it can't open "config.status". (The "automake"-generated Makefile will recurse into "wiretap", and, at least if you're doing builds from a tree freshly checked out from CVS, "XXX" files will probably have been checked out before "XXX.in", so "make" will try to reconstruct the "XXX" files from the "XXX.in" files.) That also obviates the need to make "wiretap/Makefile" here. We can also re-delete "wiretap/Makefile" from CVS - the problem that caused me to bring it back wasn't caused by its absence, it was caused by the above. As "Makefile"s generated by "configure" scripts depend on the particular system on which you ran "configure", there's no One True Makefile so "Makefile" should'n't be under CVS. svn path=/trunk/; revision=95
1998-11-16Put the Makefile back, in the hopes that it'll prevent at least one ofGuy Harris1-0/+345
the many complaints you get if you do a "configure" followed by a "make" in a freshly-checked-out Ethereal source tree (it bitches when, or maybe after, "automake"ing it, complaining about not being able to open "config.status" - the right fix might be to make the "configure" script recurse). svn path=/trunk/; revision=94
1998-11-15Remove the Makefile from CVS - Ethereal doesn't have its Makefile underGuy Harris1-345/+0
CVS; it's generated by the "configure" script, and the resulting Makefile is platform-dependent, so there's no One True Makefile to put under CVS. svn path=/trunk/; revision=93
1998-11-15Add support to wiretap for reading Sun "snoop" capture files.Guy Harris1-13/+16
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-5/+5
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-2/+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-0/+339
different situations. I also fixed bootp so that is properly handles unknown BOOTP options. svn path=/trunk/; revision=85