aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-02-19 23:16:36 +0000
committerGuy Harris <guy@alum.mit.edu>2001-02-19 23:16:36 +0000
commite917aa9088678533b62b50eddf2bedc57400585a (patch)
tree7ec7eea26da6094f058f20e3ee784f4de5b16dd3
parent6c655bb1c5a7ca41d138f30691a8bdef239866c9 (diff)
As "dissect_diameter()" is now static to "packet-diameter.c", there's no
need to declare it in "packet-diameter.h" - and no need for "packet-diameter.h". svn path=/trunk/; revision=3050
-rw-r--r--Makefile.am3
-rw-r--r--packet-diameter.c3
-rw-r--r--packet-diameter.h31
3 files changed, 2 insertions, 35 deletions
diff --git a/Makefile.am b/Makefile.am
index 674773ddb6..a979a9b089 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
-# $Id: Makefile.am,v 1.284 2001/02/13 00:17:54 guy Exp $
+# $Id: Makefile.am,v 1.285 2001/02/19 23:16:36 guy Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@zing.org>
@@ -240,7 +240,6 @@ noinst_HEADERS = \
packet-bootparams.h \
packet-clip.h \
packet-ddtp.h \
- packet-diameter.h \
packet-diameter-defs.h \
packet-dns.h \
packet-esis.h \
diff --git a/packet-diameter.c b/packet-diameter.c
index 3df5131095..2de12232cf 100644
--- a/packet-diameter.c
+++ b/packet-diameter.c
@@ -1,7 +1,7 @@
/* packet-diameter.c
* Routines for DIAMETER packet disassembly
*
- * $Id: packet-diameter.c,v 1.16 2001/02/19 23:14:01 guy Exp $
+ * $Id: packet-diameter.c,v 1.17 2001/02/19 23:16:36 guy Exp $
*
* Copyright (c) 2001 by David Frascone <dave@frascone.com>
*
@@ -67,7 +67,6 @@ typedef enum {
DIAMETER_GROUPED
} diameterDataTypes;
-#include "packet-diameter.h"
#include "packet-diameter-defs.h"
#define NTP_TIME_DIFF (2208988800UL)
diff --git a/packet-diameter.h b/packet-diameter.h
deleted file mode 100644
index 828a7422fb..0000000000
--- a/packet-diameter.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/* packet-diameter.h
- * Declaration of the DIAMETER dissector.
- *
- * $Id: packet-diameter.h,v 1.3 2001/02/19 23:14:02 guy Exp $
- *
- * Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@zing.org>
- * 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_DIAMETER_H__
-#define __PACKET_DIAMETER_H__
-
-static void dissect_diameter(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
-
-#endif