aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Collapse)AuthorFilesLines
2004-08-20From Matthew Bradley: add filterable fields for the COTP TPDU numbersGuy Harris1-28/+57
and for the last-packet/earlier-fragment flag. svn path=/trunk/; revision=11781
2004-08-19From Luis Ontanon: add some fields for filtering r packet-isup which adds ↵Anders Broman1-1/+26
A,B and C numbers to the fields (that is called,calling and redirecting number). Changed the patch to not use hidden fields and some code clean up. svn path=/trunk/; revision=11780
2004-08-19MSVC++ doesn't understand that "64_bit_integer % 10000000" fits in anGuy Harris1-1/+1
"int", so we throw in a cast to squelch a warning. svn path=/trunk/; revision=11774
2004-08-19Use "G_GINT64_CONSTANT()" for 64-bit integral constants, rather thanGuy Harris1-1/+1
hardwiring "LL" as the suffix - it's not "LL" in MSVC++. svn path=/trunk/; revision=11773
2004-08-18Don't assume that if we find a conversation that we've set a dissectorGuy Harris2-49/+53
for it, or that we've given it a conversation data item - the conversation might exist for other reasons. svn path=/trunk/; revision=11767
2004-08-18Samba's smbclient doesn't put the extra stuff after the list of names inGuy Harris1-6/+11
the NTLMv2 blob, so don't bother dissecting it for now - perhaps we should see how much of the NTLMv2 response remains, and, if there is any, put it into the tree as extra data. svn path=/trunk/; revision=11765
2004-08-17Don't give up on the entire DHCPv6 packet if we find an error inGuy Harris1-9/+19
encapsulated options, just give up on the option in which they're encapsulated. Note that for the Relay Message option, we should perhaps dissect the option data as a DHCP message, not just a sequence of options. svn path=/trunk/; revision=11756
2004-08-16Don't do the FILETIME->nstime_t conversion in floating point, as itGuy Harris1-13/+18
produces some floating-point noise in the nanoseconds field; we've required 64-bit integer support for a while, so use that. svn path=/trunk/; revision=11754
2004-08-16cast define of TIME_T_MIN and TIME_T_MAX to (time_t), as MSVC seems to have ↵Ulf Lamping2-6/+6
problems with this definition and throws a warning "convert negative constant to unsigned integer" svn path=/trunk/; revision=11753
2004-08-16From Ronnie Sahlberg: update the fs attributes to be more complete andGuy Harris1-15/+120
correctly dissected. svn path=/trunk/; revision=11752
2004-08-16From Ronnie Sahlberg: add dissection of the Teletext string type to theGuy Harris1-9/+18
DirectoryString choice in SelectedAttributeTypes. svn path=/trunk/; revision=11751
2004-08-16Whenever we call "dhcpv6_option()", check to make sure it didn't setGuy Harris1-10/+21
"at_end" - if it does, the option is sufficiently bad that we can't continue dissecting the packet, so we give up. svn path=/trunk/; revision=11750
2004-08-16From Martin Mathieson:Guy Harris1-39/+55
- test for NULL conversation data to avoid a potential crash when looking up stream setup info (as RTP dissector does); - adds a heuristic function (like RTP, this is a preference initially set to off). svn path=/trunk/; revision=11748
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-15From Ronnie Sahlberg: Netscape certificate extensions.Gerald Combs2-0/+339
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-13From Jelmer Vernooij:Guy Harris6-7/+292
OSCAR-ICQ updates; DCOM IRemUnknown and IRemUnknown2 support. svn path=/trunk/; revision=11736
2004-08-13From Giles Scott: Ethernet MAC Control Frame support.Guy Harris2-0/+106
svn path=/trunk/; revision=11735
2004-08-13Move convert_string_to_hex() and convert_string_case() from gtk/find_dlg.cGerald Combs3-0/+131
to epan/strutil.c svn path=/trunk/; revision=11733
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-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 Harris1-0/+3
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-09Merge the "resolv" rename changes with the trunk.Gerald Combs3-3/+3
svn path=/trunk/; revision=11638
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 Mayer2-0/+1180
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-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 Mayer1-2/+2
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-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 Harris57-57/+57
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 Harris2-0/+296
svn path=/trunk/; revision=11614
2004-08-06Set the "svn:keywords" and "svn:eol-style" properties to their standardGuy Harris1-1/+1
values. svn path=/trunk/; revision=11609
2004-08-06Put "Spirent" into the initial comment so people are more likely to beGuy Harris1-1/+1
able to figure out what an AX/4000 is. svn path=/trunk/; revision=11608
2004-08-05SEKINE Hideki: Routines for AX/4000 Test Block dissectionJörg Mayer2-0/+182
Added HFILL macros to avoid warnings. svn path=/trunk/; revision=11604
2004-08-04Fix a URL.Guy Harris1-1/+1
svn path=/trunk/; revision=11600
2004-08-03Move a bunch of stuff that's more Windows-related than SMB-related toGuy Harris29-2373/+2585
"packet-windows-common.[ch]". svn path=/trunk/; revision=11592
2004-08-02Every file that includes "packet-smb-common.h" either includes "smb.h"Guy Harris1-2/+0
or doesn't need anything defined by "smb.h", so don't include it in "packet-smb-common.h". svn path=/trunk/; revision=11591
2004-08-02Nothing, other than the include of "smb.h", in "packet-smb-common.h" isGuy Harris1-1/+1
used here; don't include it, just include "smb.h". svn path=/trunk/; revision=11590
2004-08-02"dissect_smb_unknown()" isn't some generic routine, it's used only toGuy Harris3-14/+10
dissect unknown netlogon commands; move it to "packet-smb-logon.c". svn path=/trunk/; revision=11589
2004-08-02Don't drag in a huge pile of headers in "packet-smb-common.h"; rely onGuy Harris6-12/+25
the files including it to include what they need. svn path=/trunk/; revision=11588
2004-08-02The TDS dissector uses nothing from "packet-smb-common.h", so don'tGuy Harris1-1/+0
include it. svn path=/trunk/; revision=11587