diff --git a/epan/dissectors/Makefile.common b/epan/dissectors/Makefile.common index 9dcc8048f9..10e3691118 100644 --- a/epan/dissectors/Makefile.common +++ b/epan/dissectors/Makefile.common @@ -676,6 +676,7 @@ DISSECTOR_INCLUDES = \ packet-dcerpc-wkssvc.h \ packet-dcerpc.h \ packet-dcom.h \ + packet-dcom-cba-acco.h \ packet-ddtp.h \ packet-diameter-defs.h \ packet-diffserv-mpls-common.h \ diff --git a/epan/dissectors/packet-dcom-cba-acco.c b/epan/dissectors/packet-dcom-cba-acco.c index a652059619..c77b68d75e 100644 --- a/epan/dissectors/packet-dcom-cba-acco.c +++ b/epan/dissectors/packet-dcom-cba-acco.c @@ -35,6 +35,7 @@ #include #include "packet-dcerpc.h" #include "packet-dcom.h" +#include "packet-dcom-cba-acco.h" static int hf_cba_acco_opnum = -1; diff --git a/epan/dissectors/packet-dcom-cba-acco.h b/epan/dissectors/packet-dcom-cba-acco.h new file mode 100644 index 0000000000..41ebdf6c17 --- /dev/null +++ b/epan/dissectors/packet-dcom-cba-acco.h @@ -0,0 +1,32 @@ +/* packet-dcom-cba-acco.h + * Routines for DCOM CBA + * + * $Id$ + * + * Ethereal - Network traffic analyzer + * By Gerald Combs + * Copyright 1998 Gerald Combs + * + * 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. + */ + +#ifndef __PACKET_DCERPC_DCOM_CBA_ACCO_H +#define __PACKET_DCERPC_DCOM_CBA_ACCO_H + +int +dissect_CBA_Connection_Data(tvbuff_t *tvb, packet_info *pinfo, + proto_tree *tree); + +#endif /* packet-dcerpc-dcom-cba-acco.h */