aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pop.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-06-29 08:31:38 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-06-29 08:31:38 +0000
commit24c8815c09e95b8eb3c83c5299882220032a0698 (patch)
tree82e43b17ba8463dd69cb4739de217adbc4cebf85 /epan/dissectors/packet-pop.c
parent95279cb92c9e6cc80db79dcc6402f98b1cea31ac (diff)
make these two protocols (that are commonly transported atop SSL) register themself with their name so the new SSL preference parsing will be able to find them
svn path=/trunk/; revision=18608
Diffstat (limited to 'epan/dissectors/packet-pop.c')
-rw-r--r--epan/dissectors/packet-pop.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-pop.c b/epan/dissectors/packet-pop.c
index d384cc727b..d19605a9de 100644
--- a/epan/dissectors/packet-pop.c
+++ b/epan/dissectors/packet-pop.c
@@ -248,6 +248,7 @@ proto_register_pop(void)
};
proto_pop = proto_register_protocol("Post Office Protocol", "POP", "pop");
+ register_dissector("pop", dissect_pop, proto_pop);
proto_register_field_array(proto_pop, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
}