diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-11-12 08:58:45 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-11-12 08:58:45 +0000 |
commit | 6ff9b3366eda8f43c55c558fd379a1deed319f89 (patch) | |
tree | f8e5c10708fbe1ca0599431d9f2ae2b79e1c01d0 /packet-dcerpc.c | |
parent | 0b0116e207e30177d57ee227879faae9b74cd16c (diff) | |
download | wireshark-6ff9b3366eda8f43c55c558fd379a1deed319f89.tar.gz wireshark-6ff9b3366eda8f43c55c558fd379a1deed319f89.tar.bz2 wireshark-6ff9b3366eda8f43c55c558fd379a1deed319f89.zip |
Support for DCE RPC atop SMB, and support for several Microsoft DCE RPC
services used with SMB, from Tim Potter.
svn path=/trunk/; revision=4194
Diffstat (limited to 'packet-dcerpc.c')
-rw-r--r-- | packet-dcerpc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-dcerpc.c b/packet-dcerpc.c index 73fe6d0c48..31f1f6c48e 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.12 2001/10/05 20:25:41 guy Exp $ + * $Id: packet-dcerpc.c,v 1.13 2001/11/12 08:58:43 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -1440,4 +1440,5 @@ proto_reg_handoff_dcerpc (void) heur_dissector_add ("tcp", dissect_dcerpc_cn, proto_dcerpc); heur_dissector_add ("netbios", dissect_dcerpc_cn, proto_dcerpc); heur_dissector_add ("udp", dissect_dcerpc_dg, proto_dcerpc); + heur_dissector_add ("msrpc", dissect_dcerpc_cn, proto_dcerpc); } |