aboutsummaryrefslogtreecommitdiffstats
path: root/epan/CMakeLists.txt
AgeCommit message (Collapse)AuthorFilesLines
2011-10-23Remove csg added by mistake.etxrab1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39520 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-23From Pascal Quantin.etxrab1-0/+3
The attached patch adds the LPPa (LTE Positioning Protocol A) dissector as specified in 3GPP 36.455 release 9.4.1. (Part 2) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6478 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39516 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-19From Martin Kaiser via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6463alagoutte1-0/+1
dissector for HDCP (High bandwidth Digital Content Protection) HDCP can run on top of TCP, there's no fixed port number assigned. I created a heuristic dissector that's disabled by default and can be enabled by setting a preference (similar to the hilscher dissector). The idea behind this is that some HDCP messages are hard to recognize (e.g. one byte message id + 8 random bytes). Having the dissector enabled at all times may generate false positives. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39480 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-19From pascl via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6465alagoutte1-0/+1
New Protocol Submission for MVRP (Multiple VLAN Registration Protocol) New dissector submission for Multiple VLAN Registration Protocol (MVRP) defined in 802.1ak Standard, section 11. MVRP is used to to dynamically create and update Dynamic VLAN Registration Entries. From me : * Fix error from fix-encodings-args script * Add Modeline information * Added packet-mrp-mvrp.c to CMakeLists.txt git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39477 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-17Add dissectors/packet-lcsap.c to CMake. Remove ↵morriss1-0/+1
dissect_lcsap_Correlation_ID_PDU() from list of exports since it's only used within libwireshark. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39444 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-13From Christophe PALETOU:etxrab1-0/+1
Add dissector for public protocol Flight Message Transfer Protocol (FMTP) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6433 - Modified and moved col_add_fstr outside of if(tree) - call data dissector for data - use ENC_BIG_ENDIAN - minor cleanups git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39403 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-13Fix a typowmeier1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39401 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-13From Benjamin Stocks (with some work by Michael Mann): "CIP Motion" dissector;wmeier1-0/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5929 From me: packet-cipmotion.c: FT_BOOLEAN fields with bitmasks need a bit-fieldwidth in the hf[] entry 'display' field; Define attribute_size as guint32 since it has to store guint8*guint16; Use ENC_NA as encoding arg in proto_tree_add_item() for FT_BYTES field types; Remove trailing whitespace from lines; Other minor cleanup and reformatting. packet-enip.c: Use ENC_NA as encoding arg in proto_tree_add_item() for FT_BYTES field types; git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39396 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-12Add Modification CMake (Following add in Rev 39379)alagoutte1-0/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39382 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-10From Anders:stig1-1/+1
Move packet-t38.c to ASN1_DISSECTOR_SRC. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39334 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-04From Rob Kruciak:etxrab1-0/+1
This is a dissector for the BRP (Bandwidth Reservation Protocol). This protocol is used by various telecommunications vendors to establish VoD (Video On-Demand) sessions between a STB (Set Top Box) at the customer's home and the VoD server at the video head-end. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6428 - Changed hf blurbs to NULL - Used dissector_add_handle() as the proposed port is registered to a different protocol. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39254 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-30Microsoft Credential Security Support Provider (CredSSP) support. gal1-0/+1
Used by direct approach RDP for NTLMSSP authentication under SSL. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39196 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-29From Yaniv Kaul: SPICE dissectorwmeier1-0/+1
"It's not perfect, but has been in use for quite a while and dissects nicely most of the messages." https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6373 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39184 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-27From mtwire via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6060alagoutte1-0/+2
New dissectors: (UA) Universal Alcatel Protocol and transport UAUDP From me : * Prefer proto_tree_add_item (when is possible) * Use 4-space indenting * Add Modeline information * Fix Clang Warning git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39167 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-25From Glenn Matthews via bug 6319:stig1-0/+1
Add dissector for XMCP protocol. From me: - Fixed an obvious bug setting transaction_id_key[2].key = NULL, where transaction_id_key is defined with only 2 elements. - Only register heur_dissector once. - Only find media_type_dissector_table once. - Added packet-xmcp.c to CMakeLists.txt git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39131 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-23Add packet-vlan.cwmeier1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39104 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-21Basic RDP dissection, which can dissect the connection sequence. gal1-0/+2
A work in progress. Can be used with the SSL dissector to decrypt Enhanced RDP Security SSL. With Standard RDP Security (e.g those on Wiki), the PDUs are all encrypted after the SecurityExchange PDU. Wiki to be updated with an example SSL protected capture and associated key material. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39066 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-12Move airpcap_wep.c to /wsutil CMakefile changesetxrab1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38973 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-08From Edwin Groothuis via bug 6207:stig1-0/+1
Added Filter Toolbar Save functionality. From me: Removed unused code. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38937 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-08from Leonard Tracy:etxrab1-0/+1
Cisco FabricPath protocol dissector. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6017 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38934 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-07Add ftype-ipv6.cetxrab1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38918 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-06Rename Jabber -> XMPPstig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38892 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-31Second try to move crc routines to libwsutil.stig1-12/+3
This time keep the tvb routines in epan. Now we can use common crc routines outside epan. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38810 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-30Revert r38800, as the crc routines contains some tvb functions.stig1-0/+10
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38803 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-30Get rid of the last crc stuffjmayer1-4/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38802 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-30Move all crc routines to libwsutil.stig1-6/+0
This way we can use the crc routines in wiretap. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38800 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-23Remove support for libpcre, we use GRegex in GLib.stig1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38683 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-09From Allison via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6157alagoutte1-0/+1
Add Dissector for HDFS Data git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38432 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-09From Allison via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6156alagoutte1-0/+1
Add Dissector for HDFS git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38431 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-22From Xiao Xiangquan: A new dissector for Vuze DHT;wmeier1-0/+1
Vuze, called Azureus before, is a great BT client and has a lot of users, while its DHT implementation is different from the official one. From me: New-style dissectors are supposed to to always return "bytes dissected" (not just when tree != NULL); git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37755 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-22Added missing packet-mime-encap.cstig1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37747 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-20Added packet-ppi-gps.c and packet-ppi-sensor.cstig1-1/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37734 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-07From Daniel Willmann: Lontalk protocol (EIA-709.1)wmeier1-0/+1
Attached is a dissector for the Lontalk protocol (EIA-709.1). This dissector registers as a subdissector of the CN/IP protocol. Some code (mostly definitions) were taken from Bug #2252 (http://bugs.wireshark.org/bugzilla/attachment.cgi?id=4562) From me: minor mostly cosmetic changes. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5909 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37599 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-07Put packet-cnip.c in the right group (DISSECTOR_SRC not ASN1_DISSECTOR_SRC).wmeier1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37598 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-07Move packet-sercosiii.c to be a builtin dissector.etxrab1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37597 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-07From Daniel Willmann: dissector for EIA-852 protocol (Component Network over IP)wmeier1-0/+1
Attached is a dissector for CN/IP protocol described in EIA-852. It is mainly used to encapsulate and send Lontalk (EIA-709.1) or EIA-600 frames over UDP (or TCP). This dissector can only decode the common header and data frames can be decoded by further dissectors. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5907 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37596 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-31From Roland Knall: openSAFETY dissector.guy1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37487 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-26From Florian Fainelli via ↵morriss1-0/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5943 : The two patches attached allow the dissection of the Homeplug AV Ethernet MAC management frames between a controlling device and a Homeplug AV Ethernet to PLC adapter. This protocol is pretty similar to the previous generation Homeplug protocol (dissected by packet-homeplug.c) but a couple of noticeable differences make it require its own dissector handler. This dissector is based on the work done by Nicolas Thill, Xavier Carcelle and myself in the Faifa project (https://dev.open-plc.org). The dissector handles the standard Homeplug AV Ethernet MAC management frames (called public) as well as the Intellon specific management frames (vendor). From me: Remove unnecessary global variables. Add to COL_INFO even when !tree. Remove gotos. Remove unnecessary includes. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37403 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-12From Johannes Jochen via ↵morriss1-0/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5900 : I have created a dissector for the Multiple MAC Registration Protocol based on the exiting dissector of the Multiple Stream Reservation Protocol (bugzilla id: 4757 ) You can found the documentation of the Protocol here: http://standards.ieee.org/getieee802/download/802.1ak-2007.pdf It's also includes the corrections of the protocol you will found here: http://standards.ieee.org/getieee802/download/802.1Q-2005_Cor1-2008.pdf git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37104 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-11Add packet-usb-at.c;wmeier1-4/+5
Also: put a few entries in alphabetical order. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37062 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-28From Hans-Christoph Schemmel:etxrab1-0/+2
A variant of 3GPP TS 27.010 multiplexing protocol dissector. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5829 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36927 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-25From Loránd Jakab via ↵morriss1-0/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5854 : The Locator/ID Separation Protocol [1] is being standardized within the IETF, and it is nearing RFC status (pending security review). I have been maintaining a dissector patch for about a year, see [2]. Feedback received indicates that, among others, it is widely used by the developers of a large router vendor, without issues. In January I submitted the dissector for data plane packets as bug #5602, which was committed as r35615. The patch attached to this bug adds support for dissection of control plane packets. [1] http://tools.ietf.org/html/draft-ietf-lisp [2] http://lisp.ccaba.upc.edu/wireshark/ git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36845 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-19From Xiao Xiangquan via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5846alagoutte1-0/+1
A new dissector for uTorrent Transport Protocol From me : * Add link to spec BEP-0029 * Add note about type/version * Rework extensions loop * Use 2-space indenting git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36715 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-16From Neil Piercy:etxrab1-0/+1
Adds BMC protocol, including adding support for MAC and RLC CTCH channels to carry it. From me: Removed hf blurbs = def and removed check_col added tp CMakeList. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36662 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-16Add rohcetxrab1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36660 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-08From Juliusz Chroboczek via bug #5812: Dissector for the Babel Routingsfisher1-0/+1
Protocol (RFC 6126) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36518 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-26From Alexis La Goutte:jake1-0/+1
A patch to add ATM over TCP Dissector. The dissector dissect only the ATMTCP header (VCI, VPI, Payload Length) The data are not yet dissect, it is necessary to add a "UAT" (As with the K12 dissector) to indicate the type (ILMI, AAL, ATM...) of data (based on VCI/VPI) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36354 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-08Add support for Mikrotiks Neigbor Discovery Protocol (MNDP).jmayer1-0/+1
Sample capture at http://wiki.wireshark.org/SampleCaptures?action=AttachFile&do=get&target=mndp.pcap git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36170 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-07From Martin Kaiser: dissector for DVB-CI (Common Interface)wmeier1-0/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5654 From me: - Entry for DVBCI added to wtap.c encap_table_base[]; - Some code simplification with respect to the use of col_...() for COL_INFO; - Certain tests for "enough bytes available" not really needed; - (Other minor tweaks); - #include<stdio.h> not req'd; - Minor reformatting and whitespace cleanup; git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36149 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-20Renamed x411 to p1, x420 to p22 and s4406 to p772 to be consistentstig1-3/+3
on the naming policy for X.400 protocols. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36013 f5534014-38df-0310-8fa8-9805f1628bb7