aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2004-08-16Fix a typo.Guy Harris1-1/+1
svn path=/trunk/; revision=11747
2004-08-16According to draft-ietf-dhc-failover-10, the message digest type is 1Guy Harris1-3/+8
byte - and a length of 1 is used to put the message digest into the protocol tree, which agrees with that. Therefore, "tvb_get_guint8()" should be used to fetch it. svn path=/trunk/; revision=11746
2004-08-16For "pcap_findalldevs()", don't assume that just because it's in -lpcapGuy Harris1-3/+51
it's usable - one of the updates to OS X 10.3 updated libpcap to 0.8[.x], so that it had "pcap_findalldevs()", but didn't update "pcap.h", so it didn't declare "pcap_if_t", so you couldn't actually *use* it. You can work around that by installing the pcap.h (and pcap-bpf.h) from the matching tcpdump.org release, but, as even when that version of OS X is pre-installed rather than being the result of a Software Update, you still don't get the new "pcap.h" (at least I didn't get it on my PowerBook with 10.3.4). Therefore, we check whether a program that calls "pcap_findalldevs()" *and* declares a "pcap_if_t *" to pass to it can be compiled and linked with -lpcap, and only declare HAVE_PCAP_FINDALLDEVS if we can. Also, don't check for the functions added to libpcap after "pcap_findalldevs()" was added unless we have a usable "pcap_findalldevs()", as, if not, those functions won't be declared in "pcap.h" either, so we'll get compiler warnings. svn path=/trunk/; revision=11745
2004-08-15From Greg Morris: Add a configuration option to control search wrapping.Gerald Combs4-11/+66
svn path=/trunk/; revision=11744
2004-08-15From Ronnie Sahlberg: Netscape certificate extensions.Gerald Combs6-0/+589
svn path=/trunk/; revision=11743
2004-08-15Make message_digest_type a guint16. Removed cast.Jörg Mayer1-2/+3
Spotted by Ulf Lamping. svn path=/trunk/; revision=11742
2004-08-15remove MSVC compiler warning (required a type cast)Ulf Lamping1-1/+1
svn path=/trunk/; revision=11741
2004-08-15Dissect the last unknown item at the end of the NTLMv2 blob.Guy Harris1-1/+7
svn path=/trunk/; revision=11740
2004-08-14@ -> [AT]Jörg Mayer1-4/+4
svn path=/trunk/; revision=11739
2004-08-13Keep spammers away: do NOT put an @ sign in contributor's email addresses!Olivier Biot1-1/+1
svn path=/trunk/; revision=11737
2004-08-13From Jelmer Vernooij:Guy Harris7-7/+293
OSCAR-ICQ updates; DCOM IRemUnknown and IRemUnknown2 support. svn path=/trunk/; revision=11736
2004-08-13From Giles Scott: Ethernet MAC Control Frame support.Guy Harris3-0/+107
svn path=/trunk/; revision=11735
2004-08-13When opening an output file, use "file_snaplen" as the snapshot length,Guy Harris1-2/+2
rather than "pcap_snapshot(ld.pch)" - we've set "file_snaplen" to "pcap_snapshot(ld.pch)" if we're capturing from a device, but if we're reading from a pipe, "ld.pch" is null (so we'll crash if we use it), and we've set "file_snaplen" from the header we've read from a pipe. svn path=/trunk/; revision=11734
2004-08-13Move convert_string_to_hex() and convert_string_case() from gtk/find_dlg.cGerald Combs4-128/+153
to epan/strutil.c svn path=/trunk/; revision=11733
2004-08-13Copy over the NEWS and ChangeLog from the 0.10.6 release tree.Gerald Combs2-50/+423
svn path=/trunk/; revision=11732
2004-08-12Add capinfo.rc.in and wiretap.rc.in to the distribution.Gerald Combs1-0/+2
svn path=/trunk/; revision=11729
2004-08-12From Graeme Hewson: Keep the list of authors in the Ethereal man page from Gerald Combs2-2/+3
wrapping, and fix the title. svn path=/trunk/; revision=11727
2004-08-12Note that the CIFS spec claims that the service name string in TreeGuy Harris1-0/+5
Connect AndX is always ASCII; we don't assume it is - the spec may very well be wrong. svn path=/trunk/; revision=11726
2004-08-11Update to GTK-Wimp 0.6.1.Gerald Combs1-1/+1
svn path=/trunk/; revision=11721
2004-08-11Change the "setup" target to download the updated GTK+ libraries describedGerald Combs1-2/+2
at http://mail.gnome.org/archives/gtk-devel-list/2004-August/msg00058.html . svn path=/trunk/; revision=11718
2004-08-11From Tomas Kukosa: add a dissector table for OIDs in variable bindings,Guy Harris1-5/+29
so the variable value can be dissected by a subdissector. svn path=/trunk/; revision=11717
2004-08-10The FreeTDS documentation on TDS claims that the field after the localeGuy Harris1-1/+4
(or, as that documentation calls it, the language name) is the database name; mark it as such. It also says there's some other stuff, such as a client MAC address, after the database offset/length (and that the NTLMSSP message doesn't come right after the database offset/length, there's an offset/length for the NTLMSSP message). Put in a comment about that. svn path=/trunk/; revision=11713
2004-08-10From Neil Piercy: put in some missing "put in the terminating NUL"sGuy Harris2-0/+4
after "vsnprintf()" calls. svn path=/trunk/; revision=11648
2004-08-10Add support for FT_FLOAT and FT_DOUBLE in "proto_tree_add_item()"Guy Harris1-0/+20
(untested). svn path=/trunk/; revision=11646
2004-08-10From Graham Bloice: Allow libethereal.dll to be built after recent changes.Gerald Combs1-2/+2
svn path=/trunk/; revision=11644
2004-08-10Fix a typo.Guy Harris1-1/+1
svn path=/trunk/; revision=11642
2004-08-10Add LIBETHEREAL_SRC and LIBETHEREAL_INCLUDES to epan/Makefile.common,Guy Harris3-91/+73
and have epan/Makefile.am and epan/Makefile.nmake use them. svn path=/trunk/; revision=11641
2004-08-10Use the protocol short name as the Protocol column value, as is done inGuy Harris1-1/+1
other dissectors. svn path=/trunk/; revision=11640
2004-08-10From Graham Bloice: if we don't have "pcap_lib_version()" in WinPcap, weGuy Harris1-0/+13
might have "PacketLibraryVersion[]" in packet.dll - try using that. svn path=/trunk/; revision=11639
2004-08-09Merge the "resolv" rename changes with the trunk.Gerald Combs3-3/+3
svn path=/trunk/; revision=11638
2004-08-09Update FAQ againJörg Mayer2-276/+506
svn path=/trunk/; revision=11633
2004-08-09- Small cosmetic fix to DHCP failover prefsJörg Mayer1-3/+2
- free -> g_free (we are using g_malloc) - remove debug prinf svn path=/trunk/; revision=11632
2004-08-09Enable the configurable port number - and make the filter name for theGuy Harris1-22/+14
protocol "dhcpfo", to match the filter names of its fields; that - or changing the long name or abbreviation of the protocol - fixes the core dump (which was in a check for a name being legal). svn path=/trunk/; revision=11631
2004-08-09M. Ortega y Strupp <moys@loplof.de>Jörg Mayer3-0/+1184
ISC DHCP Server 3.0 failover protocol dissection Note: I tried to make the port configurable via prefs but failed to do so: It always cashed on startup so it is commented out for now. svn path=/trunk/; revision=11630
2004-08-08Fix typos.Michael Tüxen1-2/+2
svn path=/trunk/; revision=11628
2004-08-08Small typo fixJörg Mayer1-1/+1
svn path=/trunk/; revision=11627
2004-08-08From Stas Grabois: make the previous change not to show disabledGuy Harris1-2/+7
protocols in the "Add Expression" and "Decode As" dialogs work with GTK+ 2.x. svn path=/trunk/; revision=11626
2004-08-08More updates for 0.10.6.Gerald Combs1-1/+63
svn path=/trunk/; revision=11625
2004-08-08Put the "copy" button back in the conversation and host list tables.Gerald Combs2-6/+6
svn path=/trunk/; revision=11624
2004-08-08Map the old one-port "generic ASN.1" TCP/UDP/SCTP port-numberGuy Harris2-2/+14
preferences to the new multi-port ones, so that, instead of complaining when the old preferences were seen, we make the port be the one port in the new preference. Make the "message_win" "generic ASN.1" preference an obsolete preference, so we silently ignore it rather than complaining about it. svn path=/trunk/; revision=11623
2004-08-07While we're add it, support the multicast protocol type values for PPPGuy Harris1-0/+3
and GRE. Put in the RFC number. svn path=/trunk/; revision=11622
2004-08-07Add protocol 0xad as AX/4000 Testframe.Jörg Mayer3-2/+4
Make packet-ax4000.c use the value from ipproto.h svn path=/trunk/; revision=11621
2004-08-07Hanlde 8848 on Ethernet the same as 8847. Not sure that thisJörg Mayer1-0/+1
is really correct, but the payload seems to be decoded correctly. svn path=/trunk/; revision=11620
2004-08-06Update manuf and faqJörg Mayer3-76/+198
svn path=/trunk/; revision=11619
2004-08-06Svn stuff:Jörg Mayer33-11006/+11079
- Add eol-style native to all text files - Add Id attributes Add $Id: $ to all text files Makefile: - add several files and directories to make clean - Add comments for values on Suse 9.1 catalog.xml: - Add comments for values on Suse 9.1 svn path=/trunk/; revision=11618
2004-08-06some final review comment from Graeme Hewson, changed version to release 2.00Ulf Lamping3-8/+7
svn path=/trunk/; revision=11617
2004-08-06From Yaniv Kaul:Guy Harris1-68/+45
1. define new TDS packet type (17) - NTLM authentication packet. Call the ntlmssp dissector to dissect it when needed. 2. define new TDS packet type (18) - donno what it is exactly, but it's there. Will dissect it someday. 3. heuristic in netlib_check_login_pkt should also check port 2433. 4. unify the dissection of msg and err token. They have the same structure. 5. improve the dissection of the above mentioned token. svn path=/trunk/; revision=11616
2004-08-06From Albert Chin: rename resolv.{ch} to addr_resolv.{ch}, so that anGuy Harris81-81/+81
include of <resolv.h> in any system header file gets the system <resolv.h> (needed for builds on Tru64 with GTK+ 1.2[.x]). svn path=/trunk/; revision=11615
2004-08-06From Jeff Connelly: MANOLITO support.Guy Harris3-0/+300
svn path=/trunk/; revision=11614
2004-08-06From Ian Schorr: fix a bug where addresses were drawn to the wrong rowsGuy Harris2-118/+14
in the clist, and get rid of some duplicated code. svn path=/trunk/; revision=11613