aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-skinny.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2011-03-14 07:49:05 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2011-03-14 07:49:05 +0000
commit15a032af98da565186c9e77a4f24630f211a3085 (patch)
tree71f268843b8056a6ad0b406436bfd4b510d55777 /epan/dissectors/packet-skinny.c
parent338f238746803a4050e319ccfca2b6896e731fcc (diff)
Fix for bug 3933:
Decode TCP port 2443 as Secure Skinny (SCCPS). svn path=/trunk/; revision=36187
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;
}
}