https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3933
--- Comment #16 from Jaap Keuter <jaap.keuter@xxxxxxxxx> 2011-03-09 13:53:56 CET ---
Ok, this would require something like:
--- packet-skinny.c 2011-02-15 15 12:06:39.00000000 +0000
+++ packet-skinny.c 2011-02-15 15 12:06:39.00000000 +0000
@@ -46,9 +46,11 @@
#include "packet-rtp.h"
#include "packet-tcp.h"
+#include "packet-ssl.h"
#include "packet-skinny.h"
#define TCP_PORT_SKINNY 2000
+#define SSL_PORT_SKINNY 2443
#define SKINNY_SOFTKEY0 0x01
#define SKINNY_SOFTKEY1 0x02
@@ -4557,6 +4559,7 @@
media_type_dissector_table = find_dissector_table("media_type");
skinny_handle = new_create_dissector_handle(dissect_skinny, proto_skinny);
dissector_add_uint("tcp.port", TCP_PORT_SKINNY, skinny_handle);
+ ssl_dissector_add(SSL_PORT_SKINNY, "skinny", TRUE);
skinny_prefs_initialized = TRUE;
}
}
--
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.