aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Collapse)AuthorFilesLines
2012-03-24From Nikitha Malgi via ↵Jeff Morriss2-19/+187
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6958 : The Group Address (GADDR) TLV, IS-IS TLV type 142, is carried only in an LSP PDU and carries sub-TLVs that in turn advertise multicast group listeners. It also contains the Group MAC address Sub TLV. The Group MAC Address (GMAC-ADDR) sub-TLV is sub-TLV type number 1 within the GADDR TLV. In TRILL, it is used to advertise multicast listeners. Reference --- http://tools.ietf.org/html/rfc6326#section-2.1 svn path=/trunk/; revision=41751
2012-03-23From Guy Martin via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6989 :Jeff Morriss5-0/+346
Add support for DVB EIT packets from ETSI EN 300 468. svn path=/trunk/; revision=41750
2012-03-23Add a couple casts to fix the Windows builds.Jeff Morriss1-2/+2
svn path=/trunk/; revision=41745
2012-03-23Replace some duplicate blurbs with NULL.Jeff Morriss1-44/+44
svn path=/trunk/; revision=41743
2012-03-23From Tom Bottom via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6887 :Jeff Morriss1-82/+26
Address comments in the bug: fix up some hf issues and use proto_item_set_len() when necessary. Added status field dissection to AEM packets. From me: hf_aem_frequency is an FT_FLOAT and appears to have a length of 4 so use that length (instead of 5). svn path=/trunk/; revision=41742
2012-03-23From Elliot Parsons via ↵Jeff Morriss1-1/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6983 : In the packet-slowprotocols dissector, there is a bug in the event notification dissector. The code uses the incorrect value to skip past the data of a vendor specific notification. The attached patch file sets the offset to increment by raw_octet, which corrects the issue. svn path=/trunk/; revision=41741
2012-03-22From Krishna:Anders Broman1-4/+100
Enhancement to add more trace record fields in Citrix NetScaler capture file format. https://bugs.wireshark.org/bugzilla/show_bug.cgi? svn path=/trunk/; revision=41740
2012-03-22Unescape NAL unitsAnders Broman1-7/+61
Bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6975 svn path=/trunk/; revision=41739
2012-03-22Renamed dmp_class to sec_class, as this is a more correct variable name.Stig Bjørlykke1-5/+5
svn path=/trunk/; revision=41738
2012-03-22Removed unused 'msg_type_val' argument to some functions.Stig Bjørlykke1-13/+8
svn path=/trunk/; revision=41737
2012-03-22From Yaniv Kaul:Anders Broman3-3/+188
Enhance the SSL dissector to dissect some Hello extensions. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6979 svn path=/trunk/; revision=41736
2012-03-22From Weston Schmidt:Anders Broman6-3/+1295
Add support for ETV Data processing & simple MPEG DSM-CC handling. Witha a change of the name of dissect() in packet-etv.c to dissect-etv_common(). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6978 svn path=/trunk/; revision=41735
2012-03-22If the checksum is 0, then only report "no checksum" for UDP/IPv4. This ↵Chris Maynard1-1/+1
patch is from Jaap Keuter via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6232 svn path=/trunk/; revision=41734
2012-03-21From Martin Kaiser via ↵Jeff Morriss4-2/+4
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6977 : The attached (trivial) patch adds some missing breaks in switch-case blocks. This fixes coverity defects #445, #446, #1316 and #1380. svn path=/trunk/; revision=41727
2012-03-21Fix fuzz failure reported in Jeff Morriss1-20/+22
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6976 : Don't assume that all responses have conversations to find. svn path=/trunk/; revision=41726
2012-03-21'tab-width/tabstop/tabSize' in editor modelines should really always be 8.Bill Meier2-4/+4
svn path=/trunk/; revision=41725
2012-03-21'tab-width/tabstop/tabSize' in editor modelines should really always be 8;Bill Meier15-512/+528
Also: In some cases do some whitespace cleanup and some minor reformatting. svn path=/trunk/; revision=41724
2012-03-21Trivial formatting: Show segment offsets/length closer to associated ↵Martin Mathieson1-2/+2
sequence number in partial NACK. svn path=/trunk/; revision=41723
2012-03-21From Guy Martin:Anders Broman1-3/+5
Fix Coverity has 3 complaints about this dissector, reported in CID's 1450-1451 CONSTANT_EXPRESSION_RESULT: Event result_independent_of_operands: (crid & 3) >> 2 is 0 regardless of the values of its operands [non-specific operand of assignment]. 1385 crid_type = (crid & MPEG_DESCR_CONTENT_IDENTIFIER_CRID_LOCATION_MASK) >> 2; Event result_independent_of_operands: flags & 0x1000 is always 0 regardless of the values of its operands (logical operand of if). 1512 if (flags & MPEG_DESCR_LOGON_INITIALIZE_CONNECTIVITY_MASK) { Event result_independent_of_operands: flags & 0x1000 is always 0 regardless of the values of its operands (logical second operand of '&&'). 1544 if (offset < end && (flags & MPEG_DESCR_LOGON_INITIALIZE_CONNECTIVITY_MASK)) { https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6960 svn path=/trunk/; revision=41722
2012-03-21When a TCP graph is summoned, work out how many unique TCP conversationsMartin Mathieson1-5/+5
are present. However, still only create the graph for the first/only one. LTE MAC or RLC frames often contain multiple SDUs that are segments of the same TCP conversation - this avoids the need to find a frame with only one SDU. svn path=/trunk/; revision=41721
2012-03-21Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-11/+6
svn path=/trunk/; revision=41720
2012-03-21From me via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6972Alexis La Goutte1-1/+1
ISAKMP : VendorID CheckPoint : Malformed Packet Wrong minimum length when there is not CheckPoint "Data" after VendorID svn path=/trunk/; revision=41718
2012-03-21From me via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6206Alexis La Goutte1-16/+36
IKE: Life-Duration wrong displayed in LTV format The Fix commit in Revision 38387 is wrong Get the following error message : ISAKMP dissector bug: failed assertion proto.c:2957 use a HF by type (uint32, uint64, bytes...) for life duration svn path=/trunk/; revision=41717
2012-03-21From Steve Magnani:Anders Broman5-22/+133
USB: incorrect generated bInterfaceClass for composite device CONTROL transactions. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6964 svn path=/trunk/; revision=41715
2012-03-21packet-ieee1722.c:127: warning: 'ieee1722_tree' may be used uninitialized in ↵Anders Broman1-1/+1
this function svn path=/trunk/; revision=41714
2012-03-21From Jason Damori: packet-ieee1722.c calls subdissectors too late in ↵Anders Broman1-8/+12
dissection https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6974 svn path=/trunk/; revision=41711
2012-03-21If you're not going to use a subtree, don't create it.Guy Harris1-2/+0
svn path=/trunk/; revision=41707
2012-03-21Fix Coverity CID 1337: UNUSED_VALUE.Chris Maynard1-3/+1
svn path=/trunk/; revision=41706
2012-03-21Fix Coverity CID 1449: DEADCODE.Chris Maynard1-3/+0
svn path=/trunk/; revision=41705
2012-03-21Fix Coverity CID's 1452-1453: UNUSED_VALUE.Chris Maynard1-2/+2
svn path=/trunk/; revision=41704
2012-03-21Fix Coverity CID 1379: UNUSED_VALUE.Chris Maynard1-1/+1
svn path=/trunk/; revision=41703
2012-03-21Fix Coverity CID's 1439-1448 OVERRUN_STATIC introduced with r41468. Also ↵Chris Maynard1-12/+11
fix one additional dead store. svn path=/trunk/; revision=41702
2012-03-21Add missing break between AECP_COMMAND_SET_NAME and AECP_COMMAND_GET_NAME ↵Chris Maynard1-0/+1
cases. Fixes Coverity CID 1430: MISSING BREAK. svn path=/trunk/; revision=41699
2012-03-20From Yaniv Kaul:Anders Broman1-1/+42
Enhance the Spice dissector to deal with VM name and UUID messages. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6971 svn path=/trunk/; revision=41686
2012-03-20On behalf of Ericsson a dissector for output from a log tool.Anders Broman3-0/+591
svn path=/trunk/; revision=41685
2012-03-20Add Quick Start IPv6 Option ( And shared Quick Start option between ↵Alexis La Goutte4-59/+122
IPv4/IPv6/TCP ) svn path=/trunk/; revision=41681
2012-03-19Use consistent indentation & whitespace;Bill Meier1-770/+784
Reformat some lines. svn path=/trunk/; revision=41679
2012-03-19Fix crash (caused by a corrupted Diameter dictionary) reported inJeff Morriss1-3/+26
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6664 : Add some sanity checks before adding types, vendors, commands, and AVPs. svn path=/trunk/; revision=41675
2012-03-19From Roland Knall:Anders Broman1-27/+56
Guards the calledOnce boolean, against malformed traps, using register_frame_end_routine. Fixes openSAFETY - Malformed packets disable the dissector for the WS session https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6950 svn path=/trunk/; revision=41674
2012-03-19From Martin Kaiser:Anders Broman1-22/+19
dvb-ci dissector: dissect descriptor loops by using mpeg-descriptor. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6965 svn path=/trunk/; revision=41673
2012-03-19Update cause values and export the extended value string.Anders Broman2-4/+10
svn path=/trunk/; revision=41672
2012-03-19From Smyle6 via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6953Alexis La Goutte3-0/+1022
Dissector for Kismet drone/server protocol From me : * Fix Clang Warning * Remove if(tree) svn path=/trunk/; revision=41670
2012-03-19Add a new environment variable (WIRESHARK_ABORT_ON_OUT_OF_MEMORY) thatJeff Morriss1-2/+8
prevents OutOfMemory exceptions from being thrown. This makes it easier to debug such conditions. Set this variable in test-fuzzed-cap.sh but not in fuzz-test.sh; it's nice to see the friendly out-of-memory error message in the bug reports the latter script generates. svn path=/trunk/; revision=41656
2012-03-19Set eol-style to native (just to make these files readable on *NIX).Jeff Morriss2-199/+199
svn path=/trunk/; revision=41654
2012-03-18From Harald Welte: patch adding the missing hf[] entries ...Bill Meier2-0/+17
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6355#c11 svn path=/trunk/; revision=41651
2012-03-18Fix a checkAPIs error: Blurb matches field name.Bill Meier1-1/+1
svn path=/trunk/; revision=41646
2012-03-18From Reinhard Speyerer: Fix several misspellings/typos in WiresharkBill Meier27-28/+28
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6967 svn path=/trunk/; revision=41645
2012-03-18From Bill Schiller: New dissector for the HART/IP protocolBill Meier3-0/+1563
I'm contributing a new dissector for the HART/IP protocol. This protocol is specified by the HART Conformance Foundation (HCF). It is a standard protocol used in the process control industry. It essential wraps the multip-drop serial HART packets in TCP or UDP packets. The standard has been approved by the HCF and has been assigned UDP/TCP port 5094 by IANA. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6961 --This line, and those below, will be ignored-- M AUTHORS M epan/CMakeLists.txt M epan/dissectors/Makefile.common AM epan/dissectors/packet-hartip.c M ui/gtk/main_menubar.c svn path=/trunk/; revision=41644
2012-03-18[Automatic manuf, services and enterprise-numbers update for 2012-03-18]Gerald Combs1-5/+205
svn path=/trunk/; revision=41641
2012-03-18Use a value_string_ext to reference a value_string array;Bill Meier1-599/+590
Use consistent indentation; Reformat some lines. svn path=/trunk/; revision=41640