aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-05-02Use WTAP_ENCAP_IEEE_802_11_xxx for all the "802.11 plus radio header"Guy Harris14-106/+184
encapsulations. For pre-V9 AiroPeek captures, leave the radio information in the packet data, just as we do with the Prism, AVS, radiotap, and NetMon headers. Add a dissector for it. svn path=/trunk/; revision=42379
2012-05-02Reflect the rename of packet-airopeek.c to packet-peekremote.c.Guy Harris1-1/+1
svn path=/trunk/; revision=42378
2012-05-02Rename packet-airopeek.c to packet-peekremote.c, and rename the protocolGuy Harris3-143/+157
as well, as it may also be used by OmniPeek. Add some comments about it. svn path=/trunk/; revision=42377
2012-05-01Remove unnecessary null-pointer check.Guy Harris1-4/+2
svn path=/trunk/; revision=42376
2012-05-01Add copyright notices. Fix SVN properties on svnadd.Jeff Morriss4-8/+68
svn path=/trunk/; revision=42375
2012-05-01Fix 2 redundant redeclaration warnings and a bug where logical AND (&&) was ↵Chris Maynard1-4/+1
incorrectly used where bit-wise AND (&) was meant. svn path=/trunk/; revision=42373
2012-05-01Add new HTTP Status Codes from RFC 6585;Bill Meier1-7/+15
Also: Add codes 226 & 426 as specified in the IANA HTTP Status Code Registry svn path=/trunk/; revision=42372
2012-05-01Indicate why the flags have a field width of 6.Guy Harris1-6/+8
Add the RFC numbers for the BFD RFCs, and a URL for the last I-D that discussed version 0. svn path=/trunk/; revision=42371
2012-05-01Forgot to commit this change with r42341 which initializes 'type' to 0 to ↵Chris Maynard1-1/+1
avoid a clang warning. svn path=/trunk/; revision=42370
2012-04-30No C++-style comments, please; some C compilers reject them.Guy Harris1-6/+6
svn path=/trunk/; revision=42368
2012-04-30The message length isn't needed in cmd_sched_rep() - it's just theGuy Harris1-8/+0
containing packet length, so if we go past it, we'll get an exception thrown. Get rid of it. The answer to "Should msglen be returned instead of offset?" is "no" - the command dissectors return the new offset. Get rid of an unused - and unnecessary - variable. svn path=/trunk/; revision=42367
2012-04-30Add some initializations to squelch (bogus) warnings (either the versionGuy Harris1-11/+11
is 0 or it isn't, so the variables are not, in fact, used uninitialized). svn path=/trunk/; revision=42366
2012-04-30Try to fix some Logic error (Function call argument is an uninitialized ↵Alexis La Goutte1-23/+23
value ) Warning found by Clang svn path=/trunk/; revision=42365
2012-04-30Rework code slightly:Bill Meier1-237/+219
- use proto_tree_add_item() istead of tvb_get...()/proto_tree_add_uint() in a few cases; - misc ... Also: Whitespace cleanup and reformatting of hf[] entries. svn path=/trunk/; revision=42364
2012-04-30Switch to UTF-8 for remote encodings to match what the IEEE SA isGerald Combs2-102/+106
almost-but-not-quite sending. Add a link to a page with common character encoding errors. svn path=/trunk/; revision=42363
2012-04-30Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte8-73/+121
svn path=/trunk/; revision=42362
2012-04-30Parenthesize an expression to prevent a possible overflow resulting an ↵Bill Meier1-1/+1
incorrect result. svn path=/trunk/; revision=42361
2012-04-30Remove unused variable not found by MSVC2010EE but found by OSX buildbot.Chris Maynard1-1/+0
svn path=/trunk/; revision=42360
2012-04-30Add Selective Directed Broadcast (RFC 1770) IP option dissection support.Chris Maynard1-3/+40
svn path=/trunk/; revision=42359
2012-04-30Fix a couple of clang warnings and adjust capitalization.Gerald Combs1-3/+3
svn path=/trunk/; revision=42358
2012-04-30Don't use tabs in string constants;Bill Meier4-15/+15
svn path=/trunk/; revision=42357
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