aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtps.h
diff options
context:
space:
mode:
authorJuanjo Martin <juanjo@rti.com>2017-07-26 18:21:00 +0200
committerAnders Broman <a.broman58@gmail.com>2017-07-28 05:30:46 +0000
commit13bd996e8f41fefeb0dfe6a71083e44b8ab5eaaf (patch)
tree7fc500768477e7060823cf4f6a2760c68818f5a7 /epan/dissectors/packet-rtps.h
parentcf0870ad2102dd632a12f6093184f3faae9f6712 (diff)
RTPS: Fixed Secure DDS minor details
Change-Id: I896764009887fedddbd41183f9b0d292119939d1 Reviewed-on: https://code.wireshark.org/review/22804 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-rtps.h')
-rw-r--r--epan/dissectors/packet-rtps.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/epan/dissectors/packet-rtps.h b/epan/dissectors/packet-rtps.h
index c934f4fd92..44c5a7daba 100644
--- a/epan/dissectors/packet-rtps.h
+++ b/epan/dissectors/packet-rtps.h
@@ -418,11 +418,11 @@ typedef struct _rtps_dissector_data {
#define SUBMESSAGE_APP_ACK (0x1c)
#define SUBMESSAGE_APP_ACK_CONF (0x1d)
#define SUBMESSAGE_HEARTBEAT_VIRTUAL (0x1e)
-#define SUBMESSAGE_SECURE_BODY (0x30)
-#define SUBMESSAGE_SECURE_PREFIX (0x31)
-#define SUBMESSAGE_SECURE_POSTFIX (0x32)
-#define SUBMESSAGE_SECURE_RTPS_PREFIX (0x33)
-#define SUBMESSAGE_SECURE_RTPS_POSTFIX (0x34)
+#define SUBMESSAGE_SEC_BODY (0x30)
+#define SUBMESSAGE_SEC_PREFIX (0x31)
+#define SUBMESSAGE_SEC_POSTFIX (0x32)
+#define SUBMESSAGE_SRTPS_PREFIX (0x33)
+#define SUBMESSAGE_SRTPS_POSTFIX (0x34)
#define SUBMESSAGE_RTI_CRC (0x80)
@@ -535,6 +535,12 @@ typedef struct _rtps_dissector_data {
#define APPLICATION_ORDERED_ACKNOWLEDGMENT (2)
#define APPLICATION_EXPLICIT_ACKNOWLEDGMENT (3)
+#define CRYPTO_TRANSFORMATION_KIND_NONE (0)
+#define CRYPTO_TRANSFORMATION_KIND_AES128_GMAC (1)
+#define CRYPTO_TRANSFORMATION_KIND_AES128_GCM (2)
+#define CRYPTO_TRANSFORMATION_KIND_AES256_GMAC (3)
+#define CRYPTO_TRANSFORMATION_KIND_AES256_GCM (4)
+
/* Vendor specific - rti */
#define NDDS_TRANSPORT_CLASSID_ANY (0)
#define NDDS_TRANSPORT_CLASSID_UDPv4 (1)