aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-04-30Revert 3 conversions of spaces --> tabs (in text strings) done in SVN #42354.Bill Meier1-3/+3
svn path=/trunk/; revision=42356
2012-04-30From Martin Kaiser:pascal6-23/+23
Fix some 'intermediate pointers must be const qualified' warnings https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7215 svn path=/trunk/; revision=42355
2012-04-30Whitespace cleanup; reformat hf[] entries.Bill Meier1-976/+2041
svn path=/trunk/; revision=42354
2012-04-30Add MTU probe, MTU reply and Traceroute IP option dissection support.Chris Maynard1-17/+94
svn path=/trunk/; revision=42353
2012-04-30Update the annotations item.Gerald Combs1-1/+1
svn path=/trunk/; revision=42352
2012-04-30Update comments with the RRLP version currently dissectedpascal4-4/+4
svn path=/trunk/; revision=42351
2012-04-30From Evan Huus:pascal1-0/+3
Fix memory leak in process_body_part() when there is no body https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7212 svn path=/trunk/; revision=42350
2012-04-30Update the IEEE OUI and IAB URLs.Gerald Combs1-2/+2
svn path=/trunk/; revision=42349
2012-04-30Add missing RFC791 PROG security definition. Reorder ipopts[] so it matches ↵Chris Maynard1-13/+53
the order at http://www.iana.org/assignments/ip-parameters, which is ordered by 'Number'. Use the descriptions as they appear there as well. Add TODO placeholders in ipopt[] for the yet-to-be-implemented options. svn path=/trunk/; revision=42348
2012-04-30From Martin Kaiser:pascal1-6/+7
fix a few clang warnings in DVB-CI dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7215 svn path=/trunk/; revision=42347
2012-04-30From Martin Kaiser:pascal1-4/+8
Fix clang warnings in HDCP dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7217 svn path=/trunk/; revision=42346
2012-04-30From Evan Huus via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7218 :Jeff Morriss1-3/+4
Add 'track-origins' option flag to valgrind script. svn path=/trunk/; revision=42345
2012-04-30Fix some clang warnings (dead assignment/increment, assigned value is ↵pascal2-9/+10
garbage or undefined) svn path=/trunk/; revision=42344
2012-04-30Fix a few clang warningspascal3-32/+5
svn path=/trunk/; revision=42343
2012-04-30Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7064 :pascal1-59/+257
Dissect basic security option according to RFC 791 or RFC 1108 depending on the option length and the first two bytes content. Also dissect the extended security option. svn path=/trunk/; revision=42342
2012-04-29Fix a clang warning due to 'type' not being initialized.Chris Maynard1-1/+1
svn path=/trunk/; revision=42341
2012-04-29Fix typo errorspascal1-2/+2
svn path=/trunk/; revision=42340
2012-04-29[Automatic manuf, services and enterprise-numbers update for 2012-04-29]Gerald Combs3-1014/+1252
svn path=/trunk/; revision=42333
2012-04-29Add ".dmp" as a suffix for pcap files of various flavors. Add ".ntar"Guy Harris1-8/+8
as a suffix for pcap-ng files. svn path=/trunk/; revision=42330
2012-04-29Add .ntar as a suffix (some pcap-ng files use it).Guy Harris1-2/+4
Sort the suffixes alphabetically. svn path=/trunk/; revision=42329
2012-04-29Make the extension lower case.Guy Harris1-2/+15
Say "Pcap" rather than "Libpcap" - pcap format is used by WinPcap as well (and it's also read and written by this library called Wiretap :-)). Add an additional entry for pcap-NG. svn path=/trunk/; revision=42328
2012-04-28Check result of sscanf(), and avoid a mirrored variable declaration.Martin Mathieson1-2/+5
From Visual Studio Analyzer output. svn path=/trunk/; revision=42327
2012-04-28Avoid needlessly shadowing a variable. From Visual Studio Analyzer.Martin Mathieson1-1/+0
svn path=/trunk/; revision=42326
2012-04-28Initialize u32RecDataLen to 0 to avoid a clang warning and in the event it ↵Chris Maynard1-1/+1
never gets initialized in either dissect_IODWriteReqHeader_block() or dissect_IODReadReqHeader_block(). svn path=/trunk/; revision=42325
2012-04-28Initialize val to 0 in case pdata != NULL but "di->conformant_run" is TRUE ↵Chris Maynard1-2/+2
so the *pdata won't contain garbage as reported by clang. svn path=/trunk/; revision=42324
2012-04-28Fix dead initialization warning reported by clang.Chris Maynard1-1/+1
svn path=/trunk/; revision=42323
2012-04-28Fix long name for reverse charging field.Guy Harris1-1/+1
svn path=/trunk/; revision=42322
2012-04-28Remove redundant "X.25". (I'm not sure why the protcol name is includedGuy Harris1-3/+3
in the reassembly information both here and, for example, IPv4 fragment reassembly, but perhaps those are redundant as well.) svn path=/trunk/; revision=42321
2012-04-28Initialize the bits[] array to zero.Chris Maynard1-0/+1
svn path=/trunk/; revision=42320
2012-04-28Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7213:pascal1-15/+40
Update dissection of Reverse charging, fast select, and ICRD status selection facilities svn path=/trunk/; revision=42319
2012-04-28From Evan Huus:pascal1-6/+0
Remove unused variables in SMB dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7211 svn path=/trunk/; revision=42318
2012-04-28Avoid assignement and clang warning.Martin Mathieson1-2/+1
svn path=/trunk/; revision=42317
2012-04-28Another unnecessary assignment removed to fix clang warning.Martin Mathieson1-1/+1
svn path=/trunk/; revision=42316
2012-04-28Remove move unread updates to 'offset' to avoid clang warnings.Martin Mathieson1-28/+4
svn path=/trunk/; revision=42315
2012-04-28Don't look up p_fp_info only to always overwrite it.Martin Mathieson1-1/+1
svn path=/trunk/; revision=42314
2012-04-28Test a return value to avoid an initialised warning from clang.Martin Mathieson1-6/+5
svn path=/trunk/; revision=42313
2012-04-28Remove an unnecessary assignment from clang output. I can't see theMartin Mathieson1-1/+0
problem with the other 2 warnings for this file. --This linen , and those below, will be ignored-- M packet-umts_fp.c svn path=/trunk/; revision=42312
2012-04-28Remove _U_ from arguments that are actually used.Guy Harris1-5/+5
Fix a comment. svn path=/trunk/; revision=42311
2012-04-28Remove a couple of unused assignments pointed out by clang.Martin Mathieson1-2/+0
svn path=/trunk/; revision=42310
2012-04-28Remove unused header fieldspascal1-8/+0
svn path=/trunk/; revision=42309
2012-04-28Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7051 :pascal1-29/+65
Add option 82 suboptions 150/151/152 decoding to DHCP dissector svn path=/trunk/; revision=42308
2012-04-28SCSI SBC: Add dissection of the ANCHOR and UNMAP bits in WRITESAME10/16Ronnie Sahlberg1-0/+12
svn path=/trunk/; revision=42307
2012-04-28If xml_get_int() fails, bail immediately; don't use the variable itGuy Harris1-14/+18
would have filled in had it not failed. (Thanks and a tip of the Hatlo hat to the Clang static analyzer for complaining about this.) svn path=/trunk/; revision=42306
2012-04-28Neither C90 nor C99 explicitly guarantee that a memcpy() call with aGuy Harris1-1/+3
null source argument and a zero count will work; in practice, they probably will (with a zero count, there's nothing to fetch from the source), but the Clang static analyzer still warns about it. svn path=/trunk/; revision=42305
2012-04-28Get rid of some unnecessary assignments, to remove warnings from theGuy Harris1-5/+1
Clang static analyzer. svn path=/trunk/; revision=42304
2012-04-27Like r42302 but in other place.Jakub Zawadzki1-2/+3
Followup to r42283: the loop which allocates operation summaries may not run to completion, so don't try to free all the operation summaries. svn path=/trunk/; revision=42303
2012-04-27Fix fuzz failure reported in Jeff Morriss1-2/+3
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7209 : Followup to r42283: the loop which allocates operation summaries may not run to completion, so don't try to free all the operation summaries. svn path=/trunk/; revision=42302
2012-04-27Fix sigsegv in filter expression dialog when user clicked on some ↵Jakub Zawadzki1-1/+1
BASE_CUSTOM field. svn path=/trunk/; revision=42301
2012-04-27As suggested in ↵Jeff Morriss1-3/+3
http://www.wireshark.org/lists/wireshark-dev/201204/msg00062.html : Don't use ENC_BIG_ENDIAN or ENC_LITTLE_ENDIAN with ENC_ASCII: ASCII has no endianism, so ENC_NA is more appropriate. svn path=/trunk/; revision=42300
2012-04-27Bugzilla always uses https (and has for quite a while), so use https in the ↵Jeff Morriss1-11/+11
URLs to the bugs. svn path=/trunk/; revision=42299