aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS4
-rw-r--r--doc/ethereal.pod.template1
-rw-r--r--packet-http.c4
3 files changed, 8 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index c7968d18ab..1b565c681d 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -772,6 +772,10 @@ Jean-Francois Mule <jfmule[AT]clarent.com> {
Additional SIP methods
}
+Thomas Wittwer <thomas.wittwer[AT]iclip.ch> {
+ HTTP dissector registered by name
+}
+
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to
give his permission to use his version of snprintf.c.
diff --git a/doc/ethereal.pod.template b/doc/ethereal.pod.template
index e6394784f6..fe53548d59 100644
--- a/doc/ethereal.pod.template
+++ b/doc/ethereal.pod.template
@@ -1153,6 +1153,7 @@ B<http://www.ethereal.com>.
Motonori Shindo <mshindo[AT]mshindo.net>
Terje Krogdahl <tekr[AT]nextra.com>
Jean-Francois Mule <jfmule[AT]clarent.com>
+ Thomas Wittwer <thomas.wittwer[AT]iclip.ch>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to give his
permission to use his version of snprintf.c.
diff --git a/packet-http.c b/packet-http.c
index 6aed5204e2..27bbf070d9 100644
--- a/packet-http.c
+++ b/packet-http.c
@@ -3,7 +3,7 @@
*
* Guy Harris <guy@alum.mit.edu>
*
- * $Id: packet-http.c,v 1.38 2001/06/18 02:17:46 guy Exp $
+ * $Id: packet-http.c,v 1.39 2001/09/04 01:01:46 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -393,6 +393,8 @@ proto_register_http(void)
proto_register_field_array(proto_http, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
+ register_dissector("http", dissect_http, proto_http);
+
/*
* Dissectors shouldn't register themselves in this table;
* instead, they should call "http_dissector_add()", and