aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Collapse)AuthorFilesLines
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-29[Automatic manuf, services and enterprise-numbers update for 2012-04-29]Gerald Combs1-2/+178
svn path=/trunk/; revision=42333
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 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-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 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-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-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-27As suggested in ↵Jeff Morriss11-55/+55
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=42297
2012-04-27Update commented-out code to reflect the new reality.Guy Harris1-1/+1
svn path=/trunk/; revision=42296
2012-04-27From Tom Bottom:pascal1-7/+9
Fix AEM status field decoding https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7205 svn path=/trunk/; revision=42294
2012-04-27From David Wei:Anders Broman1-4/+5
Further additions and fixes to MBMS in M3AP dissector. from me update to 11.1 svn path=/trunk/; revision=42290
2012-04-27From David Wei:Anders Broman3-693/+747
Further additions and fixes to MBMS in GTPv2 and DIAMETER dissectors. svn path=/trunk/; revision=42289
2012-04-27Fix typo errorspascal1-2/+2
svn path=/trunk/; revision=42288
2012-04-27nflog: add BYTE_ORDER_HOST, fix conflicting ENC_BIG_ENDIAN, ENC_NA ↵Jakub Zawadzki1-2/+9
value_string entries. svn path=/trunk/; revision=42287
2012-04-27From Steve Magnani:Anders Broman2-2/+38
Add decoding of fields within endpoint descriptor wMaxPacketSize https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7206 svn path=/trunk/; revision=42286
2012-04-27From Tom Bottom:Anders Broman1-11/+16
The AEM status field was erroneously displayed using ACMP status field values. Minor change to display correct (as of draft 18) AEM status field values. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7205 svn path=/trunk/; revision=42284
2012-04-27From Evan Huus:Anders Broman1-0/+12
Memory leak in NFS Dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7204 svn path=/trunk/; revision=42283
2012-04-27From Evan Huus:Anders Broman1-3/+1
Get rid of unused cur_pos variable. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7203 svn path=/trunk/; revision=42282
2012-04-27From Evan Huus: Fix memory leaks in wslua_tvb.c fix typos in wslu_proto.c ↵Anders Broman2-8/+14
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7202 svn path=/trunk/; revision=42281
2012-04-27From Evan Huus: Fix memory leaks in wslua_proto.cAnders Broman1-4/+12
svn path=/trunk/; revision=42280
2012-04-27From Evan Huus: Fix memory leaks in wslua_pinfo.c ↵Anders Broman1-1/+2
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7202 svn path=/trunk/; revision=42279
2012-04-26Just use a Boring Old ASCII Dash for hex ranges.Guy Harris1-6/+6
svn path=/trunk/; revision=42272
2012-04-26Minor: reformatting, unneeded #includes, whitespace cleanup;Bill Meier18-5053/+6075
Also: use val_to_str_const(0 instead of val_to_str() in a few cases. svn path=/trunk/; revision=42271
2012-04-26Fix presumed typo (zero-origin bit 5 is 0x0020, not 0x0002).Guy Harris1-1/+1
svn path=/trunk/; revision=42268
2012-04-26Prepare to use value_string or range_string.Anders Broman1-1/+50
svn path=/trunk/; revision=42267
2012-04-26Whitespace cleanup: Indentation, trailing, ...Bill Meier11-1721/+1721
svn path=/trunk/; revision=42266
2012-04-26From Evan Huus:pascal1-1/+1
Add missing break https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7201 svn path=/trunk/; revision=42265
2012-04-26From Evan Huus:Anders Broman1-8/+0
Unused structure in packet-btrfcomm.c https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7200 svn path=/trunk/; revision=42264
2012-04-26Correct value for Baudot50 Jakub Zawadzki1-1/+1
From H.248.2: Gateway control protocol: Facsimile, text conversation and call discrimination packages (page 23) [URL: http://www.itu.int/rec/dologin_pub.asp?lang=e&id=T-REC-H.248.2-200501-I!!PDF-E&type=items] svn path=/trunk/; revision=42263
2012-04-26Add support for checking conflicting entries in value_string_ext.Jakub Zawadzki1-3/+8
svn path=/trunk/; revision=42262
2012-04-26Fix some "conflicting" value_string warnings.Jakub Zawadzki6-11/+9
copy & paste errors, not 0-terminated value_string arrays, etc. svn path=/trunk/; revision=42260
2012-04-26Fully dissect more IEsAnders Broman1-114/+132
svn path=/trunk/; revision=42259
2012-04-26From Bodo Petermann:Anders Broman1-16/+28
Megaco parser problem with LF in header. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7198 svn path=/trunk/; revision=42258