aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-skinny.c
diff options
context:
space:
mode:
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-14 07:49:05 +0000
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-14 07:49:05 +0000
commit172d367cf32aabfc156b7a8f61def8f9b5cf7a6b (patch)
tree71f268843b8056a6ad0b406436bfd4b510d55777 /epan/dissectors/packet-skinny.c
parent3628c84a5fd11d1f3fbc51c5b8a550811a7a180f (diff)
Fix for bug 3933:
Decode TCP port 2443 as Secure Skinny (SCCPS). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36187 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-skinny.c')
-rw-r--r--epan/dissectors/packet-skinny.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-skinny.c b/epan/dissectors/packet-skinny.c
index 97f220586a..3c1d1712b2 100644
--- a/epan/dissectors/packet-skinny.c
+++ b/epan/dissectors/packet-skinny.c
@@ -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 /* IANA assigned to PowerClient Central Storage Facility */
#define SKINNY_SOFTKEY0 0x01
#define SKINNY_SOFTKEY1 0x02
@@ -4557,6 +4559,7 @@ proto_reg_handoff_skinny(void)
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;
}
}