aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-11-27 09:37:18 +0000
committerGuy Harris <guy@alum.mit.edu>2001-11-27 09:37:18 +0000
commitf78a1f548b3cffe01d8c2554f6a388540d8a2426 (patch)
tree7df0ff27302310436d3b40ab240c40ec91a06a4b /packet-dcerpc.c
parent5ebf118bf33ca1eb7e3e085df1c069595478af7e (diff)
Rename the heuristic dissector table "msrpc" to "smb_transact", to
indicate that it's to be used for SMB transactions; a different table, using different dissectors, would be needed for, say, reads and writes over a named pipe, as those are byte streams and SMB transactions are packets, so the dissectors for the first one need to worry about multiple PDUs per segment and desegmentation, while the dissectors for the second one don't - and, in fact, can't do desegmentation stuff. svn path=/trunk/; revision=4286
Diffstat (limited to 'packet-dcerpc.c')
-rw-r--r--packet-dcerpc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-dcerpc.c b/packet-dcerpc.c
index d32335713d..e2961d175f 100644
--- a/packet-dcerpc.c
+++ b/packet-dcerpc.c
@@ -2,7 +2,7 @@
* Routines for DCERPC packet disassembly
* Copyright 2001, Todd Sabin <tas@webspan.net>
*
- * $Id: packet-dcerpc.c,v 1.16 2001/11/27 09:27:29 guy Exp $
+ * $Id: packet-dcerpc.c,v 1.17 2001/11/27 09:37:18 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1570,5 +1570,5 @@ proto_reg_handoff_dcerpc (void)
heur_dissector_add ("tcp", dissect_dcerpc_cn_bs, proto_dcerpc);
heur_dissector_add ("netbios", dissect_dcerpc_cn_pk, proto_dcerpc);
heur_dissector_add ("udp", dissect_dcerpc_dg, proto_dcerpc);
- heur_dissector_add ("msrpc", dissect_dcerpc_cn_pk, proto_dcerpc);
+ heur_dissector_add ("smb_transact", dissect_dcerpc_cn_pk, proto_dcerpc);
}