aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS4
-rw-r--r--packet-sip.c7
2 files changed, 9 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index f358981593..fdb2e9848d 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1100,6 +1100,10 @@ Paul E. Erkkila <pee[AT]erkkila.org> {
Skinny Client Control Protocol enhancements
}
+Jakob Schlyter <jakob[AT]crt.se> {
+ SIP method additions
+}
+
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-sip.c b/packet-sip.c
index 8b0d8858ea..1a7a0d5df1 100644
--- a/packet-sip.c
+++ b/packet-sip.c
@@ -15,7 +15,7 @@
* Copyright 2000, Heikki Vatiainen <hessu@cs.tut.fi>
* Copyright 2001, Jean-Francois Mule <jfm@clarent.com>
*
- * $Id: packet-sip.c,v 1.23 2002/02/02 02:56:19 guy Exp $
+ * $Id: packet-sip.c,v 1.24 2002/03/21 03:08:46 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -71,7 +71,10 @@ static const char *sip_methods[] = {
"INFO",
"REFER",
"SUBSCRIBE",
- "NOTIFY"
+ "NOTIFY",
+ "MESSAGE",
+ "QAUTH",
+ "DO"
};
static gboolean sip_is_request(tvbuff_t *tvb, guint32 offset);