aboutsummaryrefslogtreecommitdiffstats
path: root/packet-lpd.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-04-08 07:07:42 +0000
committerGuy Harris <guy@alum.mit.edu>2000-04-08 07:07:42 +0000
commit42107e86146c473a06a11769ef2f5a8bedc1ef88 (patch)
tree8c2187183a707d04b8678a4cbfddb5577187c015 /packet-lpd.c
parent160928a318385aa2fb59af968ab1cd85847ad963 (diff)
Move calls to "dissector_add()" out of the register routines for TCP and
UDP and into the handoff registration routines for the protocols in question. Make the dissectors for those protocols static if they're not called outside the dissector's source file. Get rid of header files if all they did was declare dissectors that are now static; remove declarations of now-static dissectors from header files that do more than just declare the dissector. svn path=/trunk/; revision=1823
Diffstat (limited to 'packet-lpd.c')
-rw-r--r--packet-lpd.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/packet-lpd.c b/packet-lpd.c
index 945ed3583f..c52ba11509 100644
--- a/packet-lpd.c
+++ b/packet-lpd.c
@@ -2,7 +2,7 @@
* Routines for LPR and LPRng packet disassembly
* Gilbert Ramirez <gram@xiexie.org>
*
- * $Id: packet-lpd.c,v 1.16 2000/01/22 06:22:14 guy Exp $
+ * $Id: packet-lpd.c,v 1.17 2000/04/08 07:07:28 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -37,6 +37,8 @@
#include <glib.h>
#include "packet.h"
+#define TCP_PORT_PRINTER 515
+
static int proto_lpd = -1;
static int hf_lpd_response = -1;
static int hf_lpd_request = -1;
@@ -47,7 +49,7 @@ enum lpr_type { request, response, unknown };
static char* find_printer_string(const u_char *pd, int offset, int frame_length);
-void
+static void
dissect_lpd(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
{
proto_tree *lpd_tree;
@@ -195,3 +197,8 @@ proto_register_lpd(void)
proto_register_subtree_array(ett, array_length(ett));
}
+void
+proto_reg_handoff_lpd(void)
+{
+ dissector_add("tcp.port", TCP_PORT_PRINTER, &dissect_lpd);
+}