aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tcp.c
diff options
context:
space:
mode:
authorUwe Girlich <Uwe.Girlich@philosys.de>2000-07-14 12:54:32 +0000
committerUwe Girlich <Uwe.Girlich@philosys.de>2000-07-14 12:54:32 +0000
commita30158495e8b071b408f9156f270907b65979495 (patch)
treecbd3b60ba53f6f6fda8b65c14696ef550b3faecb /packet-tcp.c
parent78f877e3a5b55c516789e280b1385e456be89aaa (diff)
Direct call to dissect_rpc() removed. This can be made much clearer with
an heuristic dissector. svn path=/trunk/; revision=2139
Diffstat (limited to 'packet-tcp.c')
-rw-r--r--packet-tcp.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/packet-tcp.c b/packet-tcp.c
index 44d525a436..5d7c93240e 100644
--- a/packet-tcp.c
+++ b/packet-tcp.c
@@ -1,7 +1,7 @@
/* packet-tcp.c
* Routines for TCP packet disassembly
*
- * $Id: packet-tcp.c,v 1.76 2000/07/13 14:16:49 gram Exp $
+ * $Id: packet-tcp.c,v 1.77 2000/07/14 12:54:32 girlich Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -55,7 +55,7 @@
#include "packet-tcp.h"
#include "packet-ip.h"
-#include "packet-rpc.h"
+#include "conversation.h"
/* Place TCP summary in proto tree */
gboolean g_tcp_summary_in_tree = TRUE;
@@ -376,12 +376,6 @@ decode_tcp_ports( const u_char *pd, int offset, frame_data *fd, proto_tree *tree
return;
}
- /* ONC RPC. We can't base this on anything in the TCP header; we have
- to look at the payload. If "dissect_rpc()" returns TRUE, it was
- an RPC packet, otherwise it's some other type of packet. */
- if (dissect_rpc(pd, offset, fd, tree))
- return;
-
/* try to apply the plugins */
#ifdef HAVE_PLUGINS
{