aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-01-11 05:36:09 +0000
committerGuy Harris <guy@alum.mit.edu>2001-01-11 05:36:09 +0000
commitfc72ce73366a52c47e68bd7be7d17574df1ca353 (patch)
tree492773b668eeb7427f99cd4ab97cd12b9fcc08eb /packet-ipp.c
parent46d08f79f5dcfb2d728c40a9b3edd5508a8a214d (diff)
There's no need to register port 631 twice for IPP; do so only once.
Leave notes for a future rethinking of the way we handle protocols that run atop HTTP. svn path=/trunk/; revision=2869
Diffstat (limited to 'packet-ipp.c')
-rw-r--r--packet-ipp.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/packet-ipp.c b/packet-ipp.c
index 4ae61b6e7f..2df6670bc4 100644
--- a/packet-ipp.c
+++ b/packet-ipp.c
@@ -3,7 +3,7 @@
*
* Guy Harris <guy@alum.mit.edu>
*
- * $Id: packet-ipp.c,v 1.19 2001/01/09 06:31:37 guy Exp $
+ * $Id: packet-ipp.c,v 1.20 2001/01/11 05:36:09 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -569,17 +569,3 @@ proto_register_ipp(void)
*/
register_dissector("ipp", dissect_ipp, proto_ipp);
}
-
-void
-proto_reg_handoff_ipp(void)
-{
- /* XXX - should we just register ourselves as a dissector,
- and call the HTTP dissector?
-
- Should we pass to it a pointer to our dissector, so that
- it knows to call us?
-
- Or should the HTTP dissector decide that the payload is
- IPP based on the MIME headers? */
- dissector_add("tcp.port", 631, dissect_http, -1); /* XXX */
-}