aboutsummaryrefslogtreecommitdiffstats
path: root/packet-sip.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2002-03-21 03:08:46 +0000
committerGerald Combs <gerald@wireshark.org>2002-03-21 03:08:46 +0000
commitc3881d8a9dcf5aa8bd8ff989545545915b2ad6a3 (patch)
treeccffee5283355a0e2743eda50c78bee32d8c6556 /packet-sip.c
parent0410cab974cabad960a5d0fb02473cd309f26cab (diff)
From Jakob Schlyter, add the "MESSAGE" method.
Add the "QAUTH" and "DO" methods as well. svn path=/trunk/; revision=4997
Diffstat (limited to 'packet-sip.c')
-rw-r--r--packet-sip.c7
1 files changed, 5 insertions, 2 deletions
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);