aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-hdcp.c
AgeCommit message (Collapse)AuthorFilesLines
2014-12-23Deleting unneccessary #includes from dissectors.Martin Mathieson1-1/+0
Second batch (packet-eth.c -> packet-icmpv6.d). Will look at cleaning up and committing script afterwards. Change-Id: I14295758b81a59115d8c88899f166cc3d5d17594 Reviewed-on: https://code.wireshark.org/review/6013 Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
2014-12-21Cleanup use of #includes in non-generated epan/dissector/*.cBill Meier1-3/+0
Specifically: - Set packet.h to be the first wireshark #include after config.h and "system" #includes. packet.h added as an #include in some cases when missing. - Remove some #includes included (directly/indirectly) in packet.h. E.g., glib.h. (Done only for those files including packet.h). - As needed, move "system" #includes to be after config.h and before wireshark #includes. - Rework various #include file specifications for consistency. - Misc. Change-Id: Ifaa1a14b50b69fbad38ea4838a49dfe595c54c95 Reviewed-on: https://code.wireshark.org/review/5923 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Bill Meier <wmeier@newsguy.com>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-02-02dissector for HDMI (High-Definition Multimedia Interface)Martin Kaiser1-44/+8
messages on the Data Display Channel (DDC) this dissector is available as an option for I2C messages it handles EDID messages (Extended Display Identification Data) and passes HDCP messages on to the HDCP dissector Change-Id: Ia8d8e73c36e2a1ad560b911dd4c1c9f34997b5c2 Reviewed-on: https://code.wireshark.org/review/63 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx> Tested-by: Martin Kaiser <wireshark@kaiser.cx>
2014-01-22no need for if(tree)Martin Kaiser1-6/+4
svn path=/trunk/; revision=54911
2013-12-15Fix [-Wmissing-prototypes]Jakub Zawadzki1-0/+1
svn path=/trunk/; revision=54135
2013-09-01More dissectors to wmem. There are no more dissectors using se_tree now, just aEvan Huus1-18/+7
few other places. svn path=/trunk/; revision=51622
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-1/+1
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-08-23Add link to version 1 specification.Jörg Mayer1-4/+9
Remote trailing whitespcace. svn path=/trunk/; revision=44625
2012-08-15move hdcp2 dissector to a separate fileMartin Kaiser1-264/+5
use hdcp2 for protocol name, info column and filter names (actually, hdcp and hdcp2 have nothing in common - hdcp2 was a complete redesign to fix security issues in hdcp) svn path=/trunk/; revision=44527
2012-08-15hdcp2: dissect ake_no_stored_km messageMartin Kaiser1-7/+17
svn path=/trunk/; revision=44526
2012-08-13use correct protocol id for hdcp2Martin Kaiser1-1/+1
svn path=/trunk/; revision=44477
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-03-07Fix incorrect packet-details display of certain 1 bit FT_BOOLEAN fields.Bill Meier1-1/+1
(Use a valid 'parent field width' in the hf[] 'display' field. svn path=/trunk/; revision=41401
2012-02-24From Martin Kaiser via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6838Alexis La Goutte1-83/+411
Support HDCP version 1 over I2c the attached patch adds support for HDCP version 1. This is the authentication that runs between your DVD/Bluray player and your TV when they're connected via an HDMI cable. svn path=/trunk/; revision=41172
2012-01-19Localize a global variable; Do minor reformatting.Bill Meier1-13/+14
svn path=/trunk/; revision=40585
2011-10-19From Martin Kaiser via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6463Alexis La Goutte1-0/+311
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. svn path=/trunk/; revision=39480