aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2005-03-19There's now a www.cygwin.com - use it in the URL for Cygwin.Guy Harris1-1/+1
svn path=/trunk/; revision=13805
2005-03-18from Thierry MartinRonnie Sahlberg1-0/+1
fix a bug in 5view reader due to an uninitialized variable svn path=/trunk/; revision=13804
2005-03-18fix a string in the hf fieldsRonnie Sahlberg1-1/+1
svn path=/trunk/; revision=13803
2005-03-18From Jeff Morris: Display PC structured.Michael Tüxen2-5/+12
svn path=/trunk/; revision=13802
2005-03-18add the comment "The Ethereal Network Protocol Analyzer" to some shortcutsUlf Lamping1-2/+2
svn path=/trunk/; revision=13801
2005-03-18From Jeff Morris: display protocol class at parameter level.Michael Tüxen1-3/+4
svn path=/trunk/; revision=13800
2005-03-18from Ming ZhangRonnie Sahlberg1-2/+2
fix incorrect offset for a field in the READ ELEMENT STATUS cdb svn path=/trunk/; revision=13799
2005-03-18only show the Status field in a DataIn PDU if the S bit is set.Ronnie Sahlberg1-1/+3
svn path=/trunk/; revision=13798
2005-03-18Increase the width of some unsigned ints, so that we don't roll them over.Gerald Combs1-11/+11
This fixes the crash file at http://www.ethereal.com/distribution/buildbot-builds/randpkt/randpkt-udp.port==53,KINK.out.1111097410 . Make the protocol name lower case. svn path=/trunk/; revision=13797
2005-03-17From Jeff Morriss: use the new range preference type.Anders Broman1-98/+91
svn path=/trunk/; revision=13796
2005-03-17From Jeff Morriss: use the new range preference type.Anders Broman1-99/+92
svn path=/trunk/; revision=13795
2005-03-17Use "format_text()" on strings fetched from packets.Guy Harris1-3/+4
svn path=/trunk/; revision=13794
2005-03-17Fix a couple of format string bugs discovered by Bryan Fulton.Gerald Combs1-0/+2
svn path=/trunk/; revision=13793
2005-03-17Insert "%s" at various points in an attempt to trigger format string bugs.Gerald Combs1-1/+7
svn path=/trunk/; revision=13792
2005-03-17iscsi LUNs were reported incorrectly for SCSI Command PDUs when they were ↵Ronnie Sahlberg1-22/+23
not matched with a response. Read the LUN value into a local variable always and use that to pass to the scsi dissector since we can always use this value from the iscsi heade for COMMAND pdus (but not data/in/out) svn path=/trunk/; revision=13791
2005-03-17Use val_to_str instead of indexing a value_string directly. This keeps usGerald Combs1-1/+1
from crashing when we encounter an invalid type value. svn path=/trunk/; revision=13790
2005-03-17Fix the display of help information for various --with arguments (forGuy Harris2-57/+51
whatever reason, the changequote() hack doesn't seem to be working, at least on OS X; the square brackets were simply being removed from the messages). Rename the "ifpresent" value for the --with variables to "ifavailable", to match the help messages. At least for the SNMP libraries, have the "checking" message just say "whether to use XXX" and have the result message say "yes, if available" if the user didn't explicitly specify "--with" or "--without", as the default just leaves the library out if it doesn't work, but explicitly specifying "--with" means you get an error if it doesn't work. Make "--with-net-snmp" fail if the headers aren't present (if the user explicitly asks for something, we should fail if we can't give it to them, as they presumably really wanted it). svn path=/trunk/; revision=13789
2005-03-17Apply abartlet@samba.org's "raw NTLMSSP over GSS-SPNEGO" patch.Tim Potter1-6/+15
svn path=/trunk/; revision=13788
2005-03-17Clean up.Lars Roland15-2315/+1
Remove obsolete plugin address table and related files. Remove related targets from various makefiles. svn path=/trunk/; revision=13787
2005-03-16Capitalize "Net-SNMP" the way the Net-SNMP project capitalizes it.Guy Harris2-73/+107
Note that the "=PATH" argument to "--with-net-snmp" is optional. If "--with-net-snmp" is specified, give an error if Net-SNMP is found but "--with-ssl" wasn't specified, as the user has specified that they really want a version of Ethereal with Net-SNMP; if it's not specified, just warn of that and drive on, as we did before. svn path=/trunk/; revision=13786
2005-03-16Use 0, not NULL, for integer arguments; NULL might be defined as "(void *)0",Guy Harris1-3/+3
and that causes compiler warnings when it's passed as an integer argument. svn path=/trunk/; revision=13785
2005-03-16Replace malloc()/free() with g_malloc()/g_free().Gerald Combs1-2/+2
svn path=/trunk/; revision=13784
2005-03-16Add subversion Id to libethereal.defLars Roland1-0/+3
svn path=/trunk/; revision=13783
2005-03-16Remove support for the old plugin api.Lars Roland2-73/+8
TODO: cleanup files in /trunk/plugins svn path=/trunk/; revision=13782
2005-03-16Add a comment about where lemon is maintained now.Anders Broman1-0/+4
svn path=/trunk/; revision=13781
2005-03-16Have GSS-API subdissectors supply a "data is encrypted" flag to theirGuy Harris4-24/+41
callers, so that they can tell "no decrypted tvbuff because I couldn't decrypt it" from "no decrypted tvbuff because it's not encrypted in the first place". Set that based on the Kerberos seal algorithm field in the SPNEGO Kerberos 5 wrap dissector code. Use that to determine whether the GSS-API encapsulated data in LDAP is encrypted or not., rather than using a heuristic. Set the length of the SASL blob tvbuff based on the SASL length and the length of the tvbuff from which it's consstructed, rather than setting it to the SASL length. svn path=/trunk/; revision=13780
2005-03-16Spell out "G.723".Guy Harris1-1/+1
svn path=/trunk/; revision=13779
2005-03-16Check whether we have a first byte before checking it.Guy Harris1-1/+1
svn path=/trunk/; revision=13778
2005-03-16Get rid of an unused variable.Guy Harris1-1/+0
svn path=/trunk/; revision=13777
2005-03-16Dissect a bit of the payload to, Picture start block and temporal ref.Anders Broman1-7/+50
svn path=/trunk/; revision=13776
2005-03-16Fix some comments.Guy Harris1-9/+13
Use the same code to handle payload types in sessions set up by SDP and sessions set up by other protocols, rather than duplicating that code. svn path=/trunk/; revision=13775
2005-03-16Get rid of some redundant tests that cause compiler warnings.Guy Harris1-8/+8
svn path=/trunk/; revision=13774
2005-03-16Dissect some more IE:s and bug fixes.Anders Broman1-35/+518
svn path=/trunk/; revision=13773
2005-03-16Try the pt_dissector table also if conversation has been set up with SDP.Anders Broman1-2/+3
svn path=/trunk/; revision=13772
2005-03-16Fix a typo in a comment, and get rid of some unused variables, toGuy Harris1-3/+1
squelch compiler warnings. svn path=/trunk/; revision=13771
2005-03-16Doing a g_assert() that can fail with data that could appear in a packetGuy Harris1-4/+10
is wrong; cast the "guint8" value to "guint" to widen it, so that adding 1 to it doesn't overflow. (But I don't think that cast should be necessary - the "usual arithmetic conversions" in C should widen the value anyway.) svn path=/trunk/; revision=13770
2005-03-16Fix a format string vulnerability discovered by Bryan Fulton.Gerald Combs1-1/+1
svn path=/trunk/; revision=13769
2005-03-16For UDP output, set the length to 65535 instead of 0.Gerald Combs1-1/+1
svn path=/trunk/; revision=13768
2005-03-16IEEE is correct about 00:00:39Jörg Mayer1-1/+0
svn path=/trunk/; revision=13767
2005-03-16close potential overflow causing malloc to allocate 0 bytesRonnie Sahlberg1-0/+1
svn path=/trunk/; revision=13766
2005-03-16prettify nlm a bitRonnie Sahlberg1-2/+44
svn path=/trunk/; revision=13765
2005-03-16make idl2eth able to handle negative case tagsRonnie Sahlberg1-3/+18
svn path=/trunk/; revision=13764
2005-03-16decode some more of drsuapiRonnie Sahlberg5-17/+218
svn path=/trunk/; revision=13763
2005-03-15jxta updates from duigouRonnie Sahlberg1-463/+1058
svn path=/trunk/; revision=13762
2005-03-15fix a compiler warningRonnie Sahlberg1-0/+2
svn path=/trunk/; revision=13761
2005-03-15ikev2 support from Shoichi SakaneRonnie Sahlberg2-466/+1151
svn path=/trunk/; revision=13760
2005-03-15more idl2eth and drsuapi updatesRonnie Sahlberg4-36/+534
svn path=/trunk/; revision=13759
2005-03-15update to idl2eth adding WERROR as a built in typeRonnie Sahlberg3-12/+65
svn path=/trunk/; revision=13758
2005-03-14Export another routine that's been asked for at least once.Guy Harris1-0/+1
svn path=/trunk/; revision=13757
2005-03-14Routines for Unlicensed Mobile Access(UMA) dissection ( ↵Anders Broman2-0/+1532
http://www.umatechnology.org/ UMA Protocols (Stage 3) R1.0.2 (2004-11-05) ) Work in progress. svn path=/trunk/; revision=13756