added minimalist MAPI dissector - only determines request/reply

svn path=/trunk/; revision=1017
This commit is contained in:
Nathan Neulinger 1999-11-11 23:13:43 +00:00
parent 59bffe6e97
commit 08c2eb6642
4 changed files with 93 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.105 1999/11/11 21:21:59 nneul Exp $
# $Id: Makefile.am,v 1.106 1999/11/11 23:13:42 nneul Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@zing.org>
@ -73,6 +73,7 @@ DISSECTOR_SOURCES = \
packet-lapd.c \
packet-llc.c \
packet-lpd.c \
packet-mapi.c \
packet-mount.c \
packet-mount.h \
packet-nbipx.c \

83
packet-mapi.c Normal file
View File

@ -0,0 +1,83 @@
/* packet-mapi.c
* Routines for MSX mapi packet dissection
*
* $Id: packet-mapi.c,v 1.1 1999/11/11 23:13:42 nneul Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@unicom.net>
* Copyright 1998 Gerald Combs
*
* Copied from packet-tftp.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>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#include <string.h>
#include <glib.h>
#include "packet.h"
static int proto_mapi = -1;
void
dissect_mapi(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
{
proto_tree *mapi_tree, *ti;
if (check_col(fd, COL_PROTOCOL))
col_add_str(fd, COL_PROTOCOL, "MAPI");
if (check_col(fd, COL_INFO))
{
col_add_fstr(fd, COL_INFO, "%s",
(pi.match_port == pi.destport) ? "Request" : "Response");
}
if (tree)
{
ti = proto_tree_add_item(tree, proto_mapi, offset, END_OF_FRAME, NULL);
mapi_tree = proto_item_add_subtree(ti, ETT_MAPI);
if (pi.match_port == pi.destport)
{
proto_tree_add_text(mapi_tree, offset,
END_OF_FRAME, "Request: <opaque data>" );
}
else
{
proto_tree_add_text(mapi_tree, offset,
END_OF_FRAME, "Response: <opaque data>");
}
}
}
void
proto_register_mapi(void)
{
proto_mapi = proto_register_protocol("MAPI", "mapi");
}

View File

@ -1,7 +1,7 @@
/* packet-tcp.c
* Routines for TCP packet disassembly
*
* $Id: packet-tcp.c,v 1.41 1999/11/10 14:44:57 nneul Exp $
* $Id: packet-tcp.c,v 1.42 1999/11/11 23:13:43 nneul Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -96,6 +96,7 @@ static int hf_tcp_urgent_pointer = -1;
#define TCP_PORT_PPTP 1723
#define TCP_PORT_RTSP 554
#define TCP_PORT_YHOO 5050
#define TCP_PORT_MAPI 1065
/* TCP structs and definitions */
@ -509,6 +510,9 @@ dissect_tcp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) {
else if (PORT_IS(TCP_PORT_BGP)) {
pi.match_port = TCP_PORT_BGP;
dissect_bgp(pd, offset, fd, tree);
} else if (PORT_IS(TCP_PORT_MAPI)) {
pi.match_port = TCP_PORT_MAPI;
dissect_mapi(pd, offset, fd, tree);
} else {
/* check existence of high level protocols */

View File

@ -1,7 +1,7 @@
/* packet.h
* Definitions for packet disassembly structures and routines
*
* $Id: packet.h,v 1.136 1999/11/11 21:22:00 nneul Exp $
* $Id: packet.h,v 1.137 1999/11/11 23:13:43 nneul Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -332,6 +332,7 @@ enum {
ETT_ICMPv6FLAG,
ETT_POP,
ETT_IMAP,
ETT_MAPI,
ETT_FTP,
ETT_TELNET,
ETT_TELNET_SUBOPT,
@ -596,6 +597,7 @@ void dissect_ipv6(const u_char *, int, frame_data *, proto_tree *);
void dissect_ipx(const u_char *, int, frame_data *, proto_tree *);
void dissect_llc(const u_char *, int, frame_data *, proto_tree *);
void dissect_lpd(const u_char *, int, frame_data *, proto_tree *);
void dissect_mapi(const u_char *, int, frame_data *, proto_tree *);
void dissect_nbdgm(const u_char *, int, frame_data *, proto_tree *);
void dissect_netbios(const u_char *, int, frame_data *, proto_tree *);
void dissect_nbipx(const u_char *, int, frame_data *, proto_tree *);