From Chris Waters: MSN Messenger support.
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 30 Jan 2003 18:49:47 +0000 (18:49 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 30 Jan 2003 18:49:47 +0000 (18:49 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7045 f5534014-38df-0310-8fa8-9805f1628bb7

AUTHORS
Makefile.am
Makefile.nmake
packet-msn-messenger.c [new file with mode: 0644]

diff --git a/AUTHORS b/AUTHORS
index 68685c497bf6556d0a2f3f32342e5d590bcca78a..db476a94a3cf13a9b127370886542c8370de86d2 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -1334,6 +1334,7 @@ Chris Waters <chris[AT]waters.co.nz> {
            "dissector_handle_get_protocol_index()"
        Support Tazmen Sniffer Protocol and DLT_TZSP captures from
            network-based libpcaps that use that protocol
+       MSN Messenger support
 }
 
 Solomon Peachy <pizza[AT]shaftnet.org> {
index cc20fc4ffeb0c031d628d481620816394fa72845..97aba9700b2752dd305336dcbee2ab1c6745782a 100644 (file)
@@ -1,7 +1,7 @@
 # Makefile.am
 # Automake file for Ethereal
 #
-# $Id: Makefile.am,v 1.549 2003/01/29 12:58:45 jmayer Exp $
+# $Id: Makefile.am,v 1.550 2003/01/30 18:49:47 guy Exp $
 #
 # Ethereal - Network traffic analyzer
 # By Gerald Combs <gerald@ethereal.com>
@@ -262,6 +262,7 @@ DISSECTOR_SRC = \
        packet-mpls.c \
        packet-mrdisc.c \
        packet-msdp.c  \
+       packet-msn-messenger.c \
        packet-msnip.c \
        packet-msproxy.c \
        packet-mtp2.c \
index ccfb7cbc15f2a75add74295b1606d96223f58a1e..a946d0e719ff9f429bd58f518ada0bba92c1344b 100644 (file)
@@ -1,7 +1,7 @@
 ## Makefile for building ethereal.exe with Microsoft C and nmake
 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
 #
-# $Id: Makefile.nmake,v 1.276 2003/01/25 00:22:50 guy Exp $
+# $Id: Makefile.nmake,v 1.277 2003/01/30 18:49:47 guy Exp $
 
 include config.nmake
 include <win32.mak>
@@ -205,6 +205,7 @@ DISSECTOR_SRC = \
        packet-mpls.c \
        packet-mrdisc.c \
        packet-msdp.c  \
+       packet-msn-messenger.c \
        packet-msnip.c \
        packet-msproxy.c \
        packet-mtp2.c \
diff --git a/packet-msn-messenger.c b/packet-msn-messenger.c
new file mode 100644 (file)
index 0000000..1ff75d1
--- /dev/null
@@ -0,0 +1,128 @@
+/* packet-msn-messenger.c
+ * Routines for MSN Messenger Service packet dissection
+ * Copyright 2003, Chris Waters <chris@waters.co.nz>
+ *
+ * $Id: packet-msn-messenger.c,v 1.1 2003/01/30 18:49:47 guy Exp $
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * Copyright 1998 Gerald Combs
+ *
+ * Copied from packet-pop.c
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <stdio.h>
+
+#include <string.h>
+#include <glib.h>
+#include <epan/packet.h>
+#include <epan/strutil.h>
+
+static int proto_msnms = -1;
+static int hf_msnms_command = -1;
+
+static gint ett_msnms = -1;
+
+static dissector_handle_t data_handle;
+
+#define TCP_PORT_MSNMS                 1863
+
+static void
+dissect_msnms(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+{
+        proto_tree      *msnms_tree;
+       proto_item      *ti;
+       gint            offset = 0;
+       const guchar    *line;
+       gint            next_offset;
+       int             linelen;
+       int             tokenlen;
+       const guchar    *next_token;
+
+       if (check_col(pinfo->cinfo, COL_PROTOCOL))
+               col_set_str(pinfo->cinfo, COL_PROTOCOL, "MSNMS");
+
+       /*
+        * Find the end of the first line.
+        *
+        * Note that "tvb_find_line_end()" will return a value that is
+        * not longer than what's in the buffer, so the "tvb_get_ptr()"
+        * call won't throw an exception.
+        */
+       linelen = tvb_find_line_end(tvb, offset, -1, &next_offset, FALSE);
+       line = tvb_get_ptr(tvb, offset, linelen);
+
+
+       if (check_col(pinfo->cinfo, COL_INFO)) {
+               /*
+                * Put the first line from the buffer into the summary.
+                */
+               col_add_fstr(pinfo->cinfo, COL_INFO, "%s",
+                           format_text(line, linelen));
+       }
+
+       if (tree) {
+               ti = proto_tree_add_item(tree, proto_msnms, tvb, offset, -1,
+                   FALSE);
+               msnms_tree = proto_item_add_subtree(ti, ett_msnms);
+
+               /*
+                * Show the rest of the packet as text,
+                * a line at a time.
+                */
+               while (tvb_offset_exists(tvb, offset)) {
+                       /*
+                        * Find the end of the line.
+                        */
+                       linelen = tvb_find_line_end(tvb, offset, -1,
+                           &next_offset, FALSE);
+
+                       /*
+                        * Put this line.
+                        */
+                       proto_tree_add_text(msnms_tree, tvb, offset,
+                           next_offset - offset, "%s",
+                           tvb_format_text(tvb, offset, next_offset - offset));
+                       offset = next_offset;
+               }
+       }
+}
+
+void
+proto_register_msnms(void)
+{
+  static gint *ett[] = {
+    &ett_msnms,
+  };
+
+  proto_msnms = proto_register_protocol("MSN Messenger Service", "MSNMS", "msnms");
+  proto_register_subtree_array(ett, array_length(ett));
+}
+
+void
+proto_reg_handoff_msnms(void)
+{
+  dissector_handle_t msnms_handle;
+
+  msnms_handle = create_dissector_handle(dissect_msnms, proto_msnms);
+  dissector_add("tcp.port", TCP_PORT_MSNMS, msnms_handle);
+  data_handle = find_dissector("data");
+}