aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-hpteam.c
AgeCommit message (Collapse)AuthorFilesLines
2012-06-20Use separate filters for the RTT found on a SACK and the RTT found on amorriss1-9/+11
DATA chunk: having them in both places is helpful when looking at the messages but having them separate is helpful when graphing the RTTs. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@43406 f5534014-38df-0310-8fa8-9805f1628bb7
2011-12-14Put back the source MAC address, but do it right, in one column_add_fstr()guy1-6/+2
call, and using ep_address_to_str(), so it can handle any address type, including AT_NONE if the source address isn't available. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40196 f5534014-38df-0310-8fa8-9805f1628bb7
2011-12-14Refer to a PID of 0x0002 as the PID for the HP Teaming heartbeatguy1-24/+48
protocol. Point to an HP document o the protocol, and discuss the two ways to hook up the dissector. Don't bother checking the destination address - either the OUI/PID suffices, or the MAC address is both necessary and, presumably, sufficient and we need to introduce a heuristic dissector table for SNAP frames. What's more, there's no guarantee that the destination address is a MAC address - it might be absent, e.g. because you're capturing on the Linux "any" device and are getting the "Linux cooked" header, with only a destination address. Don't put the source address into the Info column - it's already in the source column *if* it exists (which it might not, for packets captured from the "any" device and sent by the machine doing the capturing). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40195 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.wmeier1-3/+3
Also: remove trailing whitespace for a number of files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39503 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵wmeier1-1/+1
reference an hf item (in hf[] with types: FT_NONE FT_BYTES FT_IPV6 FT_IPXNET FT_OID Note: Encoding field set to ENC_NA only if the field was previously TRUE|FALSE|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39260 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-20Rename the routines that handle dissector tables with unsigned integerguy1-1/+1
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35224 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-13From Didier Gautheron:etxrab1-1/+0
col_clear.diff Remove calls to col_clear : - called twice. - before functions which also clear the column - by replacing col_clear + col_append_xxx with col_add_xxx https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31517 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-09From: : Nathan Hartwell: Patch to fix output of HP Team dissector in Info columnwmeier1-0/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29045 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-24Remove superflous code; #include <stdio.h> not needed.wmeier1-4/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28833 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-24if (!initialized) ... not req'd + other addt'l minor revisions;wmeier1-16/+11
Also: add packet-hpteam.c to Makefile.common so it gets built as part oif Wireshark. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28824 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-23From Nathan Hartwell:jake1-0/+132
This patch attempt should more closely align with the Wireshark "layout" of using a dissector rather than a "hack" to the packet-llc dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28823 f5534014-38df-0310-8fa8-9805f1628bb7