aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.h
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2013-12-24 13:44:00 +0000
committerMartin Kaiser <wireshark@kaiser.cx>2013-12-24 13:44:00 +0000
commitfba61a31becc8be0789fbb5376c1fe909b9cfa4f (patch)
treebd2a02d611953efa566c0b415e044bd8eb458bcc /epan/proto.h
parent7708c2a19f6f7b1861b7c7280ac813afef8a6220 (diff)
add ssl detection to proto_get_frame_protocols()
svn path=/trunk/; revision=54439
Diffstat (limited to 'epan/proto.h')
-rw-r--r--epan/proto.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/epan/proto.h b/epan/proto.h
index 67ffb790de..d22c8c27e8 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -1820,8 +1820,11 @@ WS_DLL_PUBLIC const char *proto_get_protocol_filter_name(const int proto_id);
* unchanged. May be NULL.
* @param is_sctp Set to TRUE if the layer list contains SCTP, otherwise
* unchanged. May be NULL.
+ * @param is_ssl Set to TRUE if the layer list contains SSL/TLS, otherwise
+ * unchanged. May be NULL.
*/
-WS_DLL_PUBLIC void proto_get_frame_protocols(const wmem_list_t *layers, gboolean *is_ip, gboolean *is_tcp, gboolean *is_udp, gboolean *is_sctp);
+WS_DLL_PUBLIC void proto_get_frame_protocols(const wmem_list_t *layers,
+ gboolean *is_ip, gboolean *is_tcp, gboolean *is_udp, gboolean *is_sctp, gboolean *is_ssl);
/** Enable / Disable protocol of the given item number.
@param proto_id protocol id (0-indexed)