aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
AgeCommit message (Collapse)AuthorFilesLines
2001-11-21Rename the "packet-msrpc-XXX.[ch]" files to "packet-dcerpc-XXX.[ch]", asGuy Harris1-10/+10
per Todd Sabin's suggestion. svn path=/trunk/; revision=4242
2001-11-15Add "packet-qllc.c".Guy Harris1-1/+2
svn path=/trunk/; revision=4209
2001-11-12Support for DCE RPC atop SMB, and support for several Microsoft DCE RPCGuy Harris1-2/+10
services used with SMB, from Tim Potter. svn path=/trunk/; revision=4194
2001-11-09Remove "text2pcap-scanner.obj" and "tools\lemon\lemon.obj" when a "nmakeGuy Harris1-3/+3
clean" is done. svn path=/trunk/; revision=4188
2001-11-09Wrap calls to "pcap_datalink()" in a routine that attempts to compensateGuy Harris1-1/+2
for AIX 5.x's non-standard libpcap, where "pcap_datalink()" doesn't return DLT_ values, it returns RFC 1573 ifType values. Put that wrapper, and the routine to get the interface list, in a separate file, for packet-capture utility routines, so not everybody who includes "util.h" needs to include <pcap.h>. Fix up the Wiretap hack for dealing with said incompatibility to use the correct ifType value for Token Ring. svn path=/trunk/; revision=4184
2001-11-06IEEE 802.1x, a/k/a EAPOL, and PPP/EAPOL EAP support, from PekkaGuy Harris1-1/+3
Nikander. svn path=/trunk/; revision=4170
2001-11-06PCNFSD dissector file packet-pcnfsd.c added to source listUwe Girlich1-1/+2
svn path=/trunk/; revision=4167
2001-11-04SUA dissector, from Michael Tuexen, replacing (and subsuming) the SUAGuy Harris1-2/+2
Light dissector. svn path=/trunk/; revision=4156
2001-11-01From David Frascone: duUpdate to Diameter dissector to load theGuy Harris1-1/+2
dictionary as an XML file rather than building it in, and various Diameter updates. svn path=/trunk/; revision=4122
2001-10-29From Ronnie Sahlberg: FT_UINT64 support, code to handle 64-bit integersGuy Harris1-1/+2
without requiring compiler support for them, and updates to the Diameter, L2TP, NFS, and NLM dissectors to use it and to the ONC RPC dissector to allow ONC RPC subdissectors to use it. svn path=/trunk/; revision=4099
2001-10-11Initial Skinny Client Control Protocol support, from Joerg Mayer.Guy Harris1-1/+2
svn path=/trunk/; revision=4016
2001-10-08UCP support, from Tom Uijldert.Guy Harris1-1/+2
svn path=/trunk/; revision=4009
2001-09-25MMSE support, from Tom Uijldert.Guy Harris1-1/+2
svn path=/trunk/; revision=3954
2001-08-18ICAP support, from Simharajan Srishylam.Guy Harris1-1/+2
svn path=/trunk/; revision=3846
2001-07-23GMRP dissector, from Markus Seehofer.Guy Harris1-1/+2
Throw a very small caltrop in the way of spam-harvesters, by replacing "@" in e-mail addresses in the AUTHORS file and Ethereal man page with "[AT]" (although I wouldn't be surprised to find that some of those harvesters already know about that trick and "fix" those addresses so you, too, can receive Valuable Information about Viagra, can-fail Internet investment opportunities and stuff-envelopes-at-home jobs, and cable descramblers). Add a couple of items from the AUTHORS file to the Ethereal man page. svn path=/trunk/; revision=3781
2001-07-22new file packet-quake3.c addedUwe Girlich1-1/+2
svn path=/trunk/; revision=3768
2001-07-21There is really no need to have the BGP dissector and the LDP dissectorGuy Harris1-1/+2
have two independent "value_string" tables mapping RFC 1700 address family numbers to names, nor is there any need to have the BGP dissector and the PIM dissector have two independent sets of #defines for RFC 1700 address family numbers; put a single "value_string" table in "afn.c" and put a declaration of it, and #defines for the address family numbers, into "afn.h", and have the dissectors use that. Move the #define for PGM into "ipproto.h", and add an entry for it in the "value_string" table in "ipproto.c". Have the PGM dissector use the standard Ethereal mechanisms for resolving addresses, and have it use "value_string" tables for mapping option types, the OPX bits, and packet types to strings. Use "bytes_to_str()" to turn byte arrays into strings of hex digits. Pass the packet type string to "dissect_pgmopts()" as an argument, rather than making it a global. Don't use "proto_tree_add_XXX_format" routines if you can possibly just use "proto_tree_add_XXX"; give various fields the correct radix and type, and VALS() strings if necessary, to make that happen (and to make filtering on them more pleasant). Put the type, length, and total length of the options into the protocol tree as separate fields. Don't have separate type, length, and OPX fields for every type of option; one field will suffice. Don't format a string with "sprintf()" and then pass that string to "col_add_fstr()" with a format of "%s" and the string as an argument - "col_add_fstr()" can format strings itself (that's what the "f" stands for). Don't byte-swap and then un-byte-swap IPv4 address fields in the header, just leave them network byte order to start with. Use the correct fields for "proto_tree_add_XXX", rather than using the same field multiple times. Quit early if an address family identifier isn't AFNUM_INET, as that means the structure we use to dissect the header doesn't match the actual header. svn path=/trunk/; revision=3761
2001-07-12PGM (Pragmatic General Multicast - RFC 2705) support, from Steve Dickson.Guy Harris1-1/+2
svn path=/trunk/; revision=3702
2001-07-12Mergecap utility for merging capture files, from Scott Renfro.Guy Harris1-4/+15
svn path=/trunk/; revision=3701
2001-07-11SSL/TLS support, from Scott Renfro.Guy Harris1-1/+2
svn path=/trunk/; revision=3692
2001-07-11Support for dissectors of protocols running atop DCE RPC registeringGuy Harris1-1/+6
themselves with the DCE RPC dissector, and support for some of the protocols atop DCE RPC that are part of DCE RPC, from Todd Sabin. svn path=/trunk/; revision=3681
2001-07-11MSDP support, from Heikki Vatiainen.Guy Harris1-1/+2
svn path=/trunk/; revision=3680
2001-06-29MSNIP support, from Ronnie Sahlberg.Guy Harris1-1/+2
svn path=/trunk/; revision=3622
2001-06-27MRDISC support, from Ronnie Sahlberg.Guy Harris1-1/+2
svn path=/trunk/; revision=3614
2001-06-21M2PA support, from Jeff Morriss.Guy Harris1-1/+2
svn path=/trunk/; revision=3596
2001-06-21new source files packet-quakeworld.c and packet-quake2.c addedUwe Girlich1-1/+3
svn path=/trunk/; revision=3594
2001-06-14RFC 2250 MPEG1 support, from Francisco Javier Cabello.Guy Harris1-1/+2
svn path=/trunk/; revision=3544
2001-06-12DVMRP support, from Ronnie Sahlberg.Guy Harris1-1/+2
Give "packet-igmp.c" an RCS ID. svn path=/trunk/; revision=3539
2001-06-08Move the fragment reassembly code into "reassemble.c" andGuy Harris1-1/+2
"reassemble.h", and remove IPv4 dependencies from it. Use it for OSI CLNP segment reassembly as well. svn path=/trunk/; revision=3525
2001-06-06Gnutella support, from B. Johannessen.Guy Harris1-1/+2
svn path=/trunk/; revision=3520
2001-06-02Windows and the MSVC++ 6.0 library don't have "strptime()", so pull inGuy Harris1-2/+3
the glibc "strptime()" (modified so it doesn't require the rest of glibc), set up the configure script to check for it, and set up Makefile.am and Makefile.nmake to use it. Get rid of NEED_MKSTEMP - nothing uses it. svn path=/trunk/; revision=3500
2001-05-30iSCSI support, from Mark Burton.Guy Harris1-3/+4
svn path=/trunk/; revision=3482
2001-05-25ISUP support, from Martina Obermeier.Guy Harris1-1/+2
svn path=/trunk/; revision=3450
2001-05-24Appletalk Data Stream Interface (used by AFP-over-TCP) support, fromGuy Harris1-1/+2
Randy McEoin. svn path=/trunk/; revision=3446
2001-05-24MTP3 support, from Michael Tuexen.Guy Harris1-1/+2
svn path=/trunk/; revision=3444
2001-05-21Add resource stuff for text2pcap.Guy Harris1-4/+4
svn path=/trunk/; revision=3429
2001-05-21Build text2pcap on Windows.Guy Harris1-3/+13
Fix text2pcap.c so that it can be compiled with Microsoft Visual C++ 6.0: protect some includes with #ifdefs, as not all the header files in question exist in the MSVC++ build environment; include <winsock.h> if we have it, to declare "ntohs()" and the like; include "getopt.h" if we need it, to declare stuff for "getopt()"; include "config.h" if we have it, so we know whether the header files in question exist or are needed; rename "BYTE" to "READ_BYTE", as <winsock.h> defines BYTE as well, and that definition causes a conflict; get rid of references to "__FUNCTION__", as MSVC++ doesn't define it (I suspect at least some UNIX compilers don't define it, either). svn path=/trunk/; revision=3428
2001-05-20Rewritten IGMP dissector, from Ronnie Sahlberg.Guy Harris1-1/+2
svn path=/trunk/; revision=3426
2001-05-11Automake updates, from Nathan Neulinger, to handle the current CVSGuy Harris1-6/+6
version of automake (which will probably eventually become the next release of automake) - it assumes variables that end with _SOURCES are of the form "target_SOURCES", where "target" must be a target that the Makefile builds. Rename "DISSECTOR_SOURCES" to "DISSECTOR_SRC" in "Makefile.nmake", as well, so that part of "Makefile.nmake" exactly matches that part of "Makefile.am". svn path=/trunk/; revision=3408
2001-05-07NIS+ support, from Ronnie Sahlberg.Guy Harris1-1/+2
svn path=/trunk/; revision=3401
2001-04-24Modbus/TCP support, from Riaan Swart.Guy Harris1-1/+2
svn path=/trunk/; revision=3376
2001-04-24RANAP support, from Martin Held.Guy Harris1-1/+2
svn path=/trunk/; revision=3375
2001-04-21SPRAY support, from Ronnie Sahlberg.Guy Harris1-1/+2
svn path=/trunk/; revision=3356
2001-04-20KLM support, from Ronnie Sahlberg.Guy Harris1-1/+2
svn path=/trunk/; revision=3345
2001-04-20Check in the file used to define fields for the X11 dissector, and theGuy Harris1-1/+13
Perl script that generates them, so that if we have to change those fields we can do so more conveniently. Remove the generated header files from CVS, and arrange that we generate them when we do a build. svn path=/trunk/; revision=3341
2001-04-18YPPASSWD support, from Ronnie Sahlberg.Guy Harris1-1/+2
svn path=/trunk/; revision=3329
2001-04-12Improvement of 'make clean' targets.Gilbert Ramirez1-2/+3
svn path=/trunk/; revision=3297
2001-04-07RWALL dissector, from Ronnie Sahlberg.Guy Harris1-1/+2
svn path=/trunk/; revision=3269
2001-04-05Win32 build fix, show "0.5.2 (WinPcap 2.1)" as the libpcap versionGilbert Ramirez1-2/+2
for Win32, and show a slightly more informative (i.e., geared to the user) help message when trying to capture without having WinPcap installed. svn path=/trunk/; revision=3261
2001-04-05Use sed in the Win32 build to place the version in various files.Gilbert Ramirez1-3/+10
We us $(VERSION), defined in the top-level config.nmake, to replace @VERSION@ in various files. $(RC_VERSION) and $(WTAP_VERSION) are similarly used. svn path=/trunk/; revision=3258