Include files from the "epan" directory and subdirectories thereof with

"epan/..." pathnames, so as to avoid collisions with header files in any
of the directories in which we look (e.g., "proto.h", as some other
package has its own "proto.h" file which it installs in the top-level
include directory).

Don't add "-I" flags to search "epan", as that's no longer necessary
(and we want includes of "epan" headers to fail if the "epan/" is left
out, so that we don't re-introduce includes lacking "epan/").

svn path=/trunk/; revision=4586
This commit is contained in:
Guy Harris 2002-01-21 07:37:49 +00:00
parent 64c8032c3b
commit ee5ca25d31
281 changed files with 752 additions and 773 deletions

4
afn.c
View File

@ -1,7 +1,7 @@
/* afn.c
* RFC 1700 address family numbers
*
* $Id: afn.c,v 1.1 2001/07/21 10:27:12 guy Exp $
* $Id: afn.c,v 1.2 2002/01/21 07:36:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -26,7 +26,7 @@
# include "config.h"
#endif
#include "packet.h"
#include <epan/packet.h>
#include "afn.h"
const value_string afn_vals[] = {

7
asn1.c
View File

@ -1,10 +1,10 @@
/* asn1.c
* Routines for ASN.1 BER dissection
*
* $Id: asn1.c,v 1.7 2001/04/15 07:30:02 guy Exp $
* $Id: asn1.c,v 1.8 2002/01/21 07:36:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
*
* Based on "g_asn1.c" from:
*
@ -25,7 +25,6 @@
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
/*
@ -70,7 +69,7 @@
#endif
#include <glib.h>
#include "tvbuff.h"
#include <epan/tvbuff.h>
#include "asn1.h"
/*

View File

@ -1,7 +1,7 @@
/* capture.c
* Routines for packet capture windows
*
* $Id: capture.c,v 1.167 2002/01/10 11:05:48 guy Exp $
* $Id: capture.c,v 1.168 2002/01/21 07:36:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -137,7 +137,7 @@
#include "gtk/main.h"
#include "gtk/gtkglobals.h"
#include "packet.h"
#include <epan/packet.h>
#include "file.h"
#include "capture.h"
#include "util.h"

View File

@ -1,12 +1,11 @@
/* column.c
* Routines for handling column preferences
*
* $Id: column.c,v 1.34 2001/07/22 21:56:25 guy Exp $
* $Id: column.c,v 1.35 2002/01/21 07:36:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* 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
@ -44,10 +43,10 @@
#include <sys/stat.h>
#endif
#include "timestamp.h"
#include <epan/timestamp.h>
#include "prefs.h"
#include "column.h"
#include "packet.h"
#include <epan/packet.h>
/* Given a format number (as defined in packet.h), returns its equivalent
string */

View File

@ -1,4 +1,4 @@
# $Id: configure.in,v 1.145 2002/01/20 23:05:22 gerald Exp $
# $Id: configure.in,v 1.146 2002/01/21 07:36:31 guy Exp $
dnl
dnl Process this file with autoconf 2.13 or later to produce a
dnl configure script; 2.12 doesn't generate a "configure" script that
@ -114,8 +114,8 @@ else
esac
fi
CFLAGS="$CFLAGS -I\$(top_srcdir) -I\$(top_srcdir)/wiretap -I\$(top_srcdir)/epan"
CPPFLAGS="$CPPFLAGS -I\$(top_srcdir) -I\$(top_srcdir)/wiretap -I\$(top_srcdir)/epan"
CFLAGS="$CFLAGS -I\$(top_srcdir) -I\$(top_srcdir)/wiretap"
CPPFLAGS="$CPPFLAGS -I\$(top_srcdir) -I\$(top_srcdir)/wiretap"
dnl Look in /usr/local for header files and libraries ?
AC_ARG_ENABLE(usr-local,

View File

@ -1,9 +1,9 @@
/* dftest.c.c
*
* $Id: dftest.c,v 1.2 2001/04/02 00:38:33 hagbard Exp $
* $Id: dftest.c,v 1.3 2002/01/21 07:36:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* Copyright 1998 Gerald Combs
*
* Shows display filter byte-code, for debugging dfilter routines.
@ -65,19 +65,19 @@
#endif
#include <glib.h>
#include <epan.h>
#include <epan/epan.h>
#if 0
#include "globals.h"
#include "packet.h"
#include <epan/packet.h>
#include "file.h"
#include "column.h"
#include "print.h"
#include "resolv.h"
#include "conversation.h"
#include <epan/resolv.h>
#include <epan/conversation.h>
#endif
#include "timestamp.h"
#include "plugins.h"
#include <epan/timestamp.h>
#include <epan/plugins.h>
#include "prefs.h"
#include "util.h"
#include "epan/dfilter/dfilter.h"

View File

@ -1,4 +1,4 @@
$Id: README.plugins,v 1.4 2001/11/13 23:55:35 gram Exp $
$Id: README.plugins,v 1.5 2002/01/21 07:37:36 guy Exp $
Plugins
@ -140,7 +140,7 @@ include ..\..\config.nmake
############### no need to modify below this line #########
CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../epan /I../../wiretap \
CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap \
/I$(GLIB_DIR) /I$(GTK_DIR) /I$(GLIB_DIR)/gmodule \
/I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 \
/I$(PCAP_DIR)\include $(LOCAL_CFLAGS)

View File

@ -1,10 +1,9 @@
/*
* $Id: dfilter-int.h,v 1.4 2001/12/18 19:09:06 gram Exp $
* $Id: dfilter-int.h,v 1.5 2002/01/21 07:37:37 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* Copyright 2001 Gerald Combs
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -27,7 +26,7 @@
#include "dfilter.h"
#include "syntax-tree.h"
#include "proto.h"
#include <epan/proto.h>
/* Passed back to user */
struct _dfilter_t {

View File

@ -1,10 +1,9 @@
/*
* $Id: dfilter.c,v 1.6 2001/12/18 19:09:06 gram Exp $
* $Id: dfilter.c,v 1.7 2002/01/21 07:37:37 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* Copyright 2001 Gerald Combs
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -37,7 +36,7 @@
#include "gencode.h"
#include "semcheck.h"
#include "dfvm.h"
#include "epan_dissect.h"
#include <epan/epan_dissect.h>
/* Balanced tree of abbreviations and IDs */

View File

@ -1,10 +1,9 @@
/*
* $Id: dfilter.h,v 1.3 2001/12/18 19:09:06 gram Exp $
* $Id: dfilter.h,v 1.4 2002/01/21 07:37:37 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* Copyright 2001 Gerald Combs
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -29,8 +28,8 @@
/* Passed back to user */
typedef struct _dfilter_t dfilter_t;
#include "epan.h"
#include "proto.h"
#include <epan/epan.h>
#include <epan/proto.h>
/* Module-level initialization */

View File

@ -1,10 +1,9 @@
/*
* $Id: dfvm.h,v 1.3 2001/02/27 19:23:28 gram Exp $
* $Id: dfvm.h,v 1.4 2002/01/21 07:37:37 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* Copyright 2001 Gerald Combs
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -25,7 +24,7 @@
#define DFVM_H
#include <stdio.h>
#include "proto.h"
#include <epan/proto.h>
#include "dfilter-int.h"
#include "syntax-tree.h"
#include "drange.h"

View File

@ -1,10 +1,9 @@
/*
* $Id: gencode.c,v 1.4 2001/12/18 19:09:06 gram Exp $
* $Id: gencode.c,v 1.5 2002/01/21 07:37:37 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* Copyright 2001 Gerald Combs
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -31,7 +30,7 @@
#include "sttype-range.h"
#include "sttype-test.h"
#include "ftypes/ftypes.h"
#include "gdebug.h"
#include <epan/gdebug.h>
static void
gencode(dfwork_t *dfw, stnode_t *st_node);

View File

@ -1,5 +1,5 @@
/*
* $Id: semcheck.c,v 1.7 2001/12/18 19:09:06 gram Exp $
* $Id: semcheck.c,v 1.8 2002/01/21 07:37:37 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -31,8 +31,8 @@
#include "sttype-range.h"
#include "sttype-test.h"
#include "exceptions.h"
#include "packet.h"
#include <epan/exceptions.h>
#include <epan/packet.h>
static void
semcheck(dfwork_t *dfw, stnode_t *st_node);

View File

@ -1,10 +1,9 @@
/*
* $Id: sttype-range.c,v 1.3 2001/02/27 19:23:28 gram Exp $
* $Id: sttype-range.c,v 1.4 2002/01/21 07:37:37 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* Copyright 2001 Gerald Combs
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -32,7 +31,7 @@
#include <glib.h>
#include "proto.h"
#include <epan/proto.h>
#include "drange.h"
#include "sttype-range.h"

View File

@ -1,5 +1,5 @@
/*
* $Id: ftype-bytes.c,v 1.8 2001/11/22 03:07:07 hagbard Exp $
* $Id: ftype-bytes.c,v 1.9 2002/01/21 07:37:39 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -27,8 +27,8 @@
#include <ftypes-int.h>
#include <string.h>
#include <ctype.h>
#include "resolv.h"
#include "int-64bit.h"
#include <epan/resolv.h>
#include <epan/int-64bit.h>
#define ETHER_LEN 6
#define IPv6_LEN 16

View File

@ -1,10 +1,9 @@
/*
* $Id: ftype-integer.c,v 1.6 2001/07/13 00:55:56 guy Exp $
* $Id: ftype-integer.c,v 1.7 2002/01/21 07:37:39 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* Copyright 2001 Gerald Combs
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -33,7 +32,7 @@
#include <stdlib.h>
#include <errno.h>
#include "ftypes-int.h"
#include "resolv.h"
#include <epan/resolv.h>
static void

View File

@ -1,5 +1,5 @@
/*
* $Id: ftype-ipv4.c,v 1.6 2001/07/13 00:55:56 guy Exp $
* $Id: ftype-ipv4.c,v 1.7 2002/01/21 07:37:39 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -27,8 +27,8 @@
#include <string.h>
#include <ftypes-int.h>
#include "ipv4.h"
#include "resolv.h"
#include <epan/ipv4.h>
#include <epan/resolv.h>
static void

View File

@ -1,10 +1,9 @@
/*
* $Id: ftype-tvbuff.c,v 1.5 2001/03/13 21:34:28 gram Exp $
* $Id: ftype-tvbuff.c,v 1.6 2002/01/21 07:37:39 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* Copyright 2001 Gerald Combs
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -26,7 +25,7 @@
#endif
#include <ftypes-int.h>
#include "gdebug.h"
#include <epan/gdebug.h>
static void
value_new(fvalue_t *fv)

View File

@ -1,10 +1,9 @@
/*
* $Id: ftypes-int.h,v 1.4 2001/03/02 17:17:56 gram Exp $
* $Id: ftypes-int.h,v 1.5 2002/01/21 07:37:39 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* Copyright 2001 Gerald Combs
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -24,7 +23,7 @@
#ifndef FTYPES_INT_H
#define FTYPES_INT_H
#include "packet.h"
#include <epan/packet.h>
#include "ftypes.h"
typedef void (*FvalueNewFunc)(fvalue_t*);

View File

@ -1,7 +1,7 @@
/* ftypes.h
* Definitions for field types
*
* $Id: ftypes.h,v 1.7 2001/11/02 10:09:51 guy Exp $
* $Id: ftypes.h,v 1.8 2002/01/21 07:37:39 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -112,15 +112,15 @@ ftype_can_le(enum ftenum ftype);
/* ---------------- FVALUE ----------------- */
#include "ipv4.h"
#include <epan/ipv4.h>
#ifdef HAVE_WINSOCK_H
#include <winsock.h>
#endif
#include "tvbuff.h"
#include "nstime.h"
#include "dfilter/drange.h"
#include <epan/tvbuff.h>
#include <epan/nstime.h>
#include <epan/dfilter/drange.h>
typedef struct {
ftype_t *ftype;

14
file.c
View File

@ -1,7 +1,7 @@
/* file.c
* File I/O routines
*
* $Id: file.c,v 1.258 2002/01/10 11:05:48 guy Exp $
* $Id: file.c,v 1.259 2002/01/21 07:36:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -68,14 +68,14 @@
# include <netinet/in.h>
#endif
#include <epan.h>
#include <filesystem.h>
#include <epan/epan.h>
#include <epan/filesystem.h>
#include "gtk/main.h"
#include "color.h"
#include "gtk/color_utils.h"
#include "column.h"
#include "packet.h"
#include <epan/packet.h>
#include "print.h"
#include "file.h"
#include "menu.h"
@ -87,12 +87,12 @@
#include "prefs.h"
#include "gtk/proto_draw.h"
#include "gtk/packet_win.h"
#include "dfilter/dfilter.h"
#include "conversation.h"
#include <epan/dfilter/dfilter.h>
#include <epan/conversation.h>
#include "reassemble.h"
#include "globals.h"
#include "gtk/colors.h"
#include "epan_dissect.h"
#include <epan/epan_dissect.h>
extern GtkWidget *packet_list, *byte_nb_ptr, *tree_view;

6
file.h
View File

@ -1,7 +1,7 @@
/* file.h
* Definitions for file structures and routines
*
* $Id: file.h,v 1.88 2001/12/06 04:25:07 gram Exp $
* $Id: file.h,v 1.89 2002/01/21 07:36:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -30,10 +30,10 @@
#endif
#include "wiretap/wtap.h"
#include "dfilter/dfilter.h"
#include <epan/dfilter/dfilter.h>
#include "print.h"
#include <errno.h>
#include <epan.h>
#include <epan/epan.h>
/* Current state of file. */
typedef enum {

View File

@ -1,7 +1,7 @@
/* filters.c
* Code for reading and writing the filters file.
*
* $Id: filters.c,v 1.13 2001/10/24 07:18:36 guy Exp $
* $Id: filters.c,v 1.14 2002/01/21 07:36:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -37,7 +37,7 @@
#include <glib.h>
#include <filesystem.h>
#include <epan/filesystem.h>
#include "filters.h"

View File

@ -1,13 +1,12 @@
/* follow.c
*
* $Id: follow.c,v 1.27 2001/05/24 23:07:40 guy Exp $
* $Id: follow.c,v 1.28 2002/01/21 07:36:31 guy Exp $
*
* Copyright 1998 Mike Hall <mlh@io.com>
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* 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
@ -41,7 +40,7 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "follow.h"
FILE* data_out_file;

View File

@ -1,13 +1,12 @@
/* follow.h
*
* $Id: follow.h,v 1.10 2000/08/11 22:18:13 deniel Exp $
* $Id: follow.h,v 1.11 2002/01/21 07:36:31 guy Exp $
*
* Copyright 1998 Mike Hall <mlh@io.com>
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* 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
@ -28,7 +27,7 @@
#ifndef __FOLLOW_H__
#define __FOLLOW_H__
#include "packet.h"
#include <epan/packet.h>
#define MAX_IPADDR_LEN 16

View File

@ -1,7 +1,7 @@
/* globals.h
* Global defines, etc.
*
* $Id: globals.h,v 1.27 2002/01/10 11:05:48 guy Exp $
* $Id: globals.h,v 1.28 2002/01/21 07:36:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -27,7 +27,7 @@
#include <stdio.h>
#include "file.h"
#include "timestamp.h"
#include <epan/timestamp.h>
#define MIN_PACKET_SIZE 68 /* minimum amount of packet data we can read */

View File

@ -10,12 +10,11 @@
* definition for them; when this file is empty, get rid of all includes
* of it, and get rid of it.
*
* $Id: greproto.h,v 1.1 2001/01/13 07:47:48 guy Exp $
* $Id: greproto.h,v 1.2 2002/01/21 07:36:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* 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

View File

@ -2,7 +2,7 @@ include ..\config.nmake
############### no need to modify below this line #########
CFLAGS=-DHAVE_CONFIG_H /I.. /I../epan /I../wiretap \
CFLAGS=-DHAVE_CONFIG_H /I.. /I../wiretap \
/I$(GLIB_DIR) /I$(GTK_DIR) /I$(GLIB_DIR)/gmodule \
/I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 \
/I$(PCAP_DIR)\WPCAP\LIBPCAP /I$(PCAP_DIR)\WPCAP\LIBPCAP\bpf \

View File

@ -1,7 +1,7 @@
/* capture_dlg.c
* Routines for packet capture windows
*
* $Id: capture_dlg.c,v 1.56 2002/01/13 20:35:11 guy Exp $
* $Id: capture_dlg.c,v 1.57 2002/01/21 07:37:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -47,7 +47,7 @@
#include "capture.h"
#include "globals.h"
#include "resolv.h"
#include <epan/resolv.h>
#include "main.h"
#include "ui_util.h"
#include "capture_dlg.h"

View File

@ -1,7 +1,7 @@
/* color_dlg.c
* Definitions for dialog boxes for color filters
*
* $Id: color_dlg.c,v 1.11 2001/12/03 02:37:25 guy Exp $
* $Id: color_dlg.c,v 1.12 2002/01/21 07:37:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -38,11 +38,11 @@
#endif
#include "gtk/main.h"
#include "packet.h"
#include <epan/packet.h>
#include "colors.h"
#include "color_dlg.h"
#include "file.h"
#include "dfilter/dfilter.h"
#include <epan/dfilter/dfilter.h>
#include "simple_dialog.h"
#include "dlg_utils.h"
#include "ui_util.h"

View File

@ -1,7 +1,7 @@
/* colors.c
* Definitions for color structures and routines
*
* $Id: colors.c,v 1.18 2002/01/08 21:35:17 guy Exp $
* $Id: colors.c,v 1.19 2002/01/21 07:37:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -43,10 +43,10 @@
#include <epan/filesystem.h>
#include "gtk/main.h"
#include "packet.h"
#include <epan/packet.h>
#include "colors.h"
#include "file.h"
#include "dfilter/dfilter.h"
#include <epan/dfilter/dfilter.h>
#include "simple_dialog.h"
extern capture_file cf;

View File

@ -1,12 +1,11 @@
/* colors.h
* Definitions for color structures and routines
*
* $Id: colors.h,v 1.5 2001/12/18 19:09:07 gram Exp $
* $Id: colors.h,v 1.6 2002/01/21 07:37:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* 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
@ -25,10 +24,10 @@
#ifndef __COLORS_H__
#define __COLORS_H__
#include "proto.h"
#include "dfilter/dfilter.h"
#include <epan/proto.h>
#include <epan/dfilter/dfilter.h>
#include <gtk/gtk.h>
#include "epan.h"
#include <epan/epan.h>
#define MAXCOLORS 255
#define MAX_COLOR_FILTER_NAME_LEN 33

View File

@ -1,6 +1,6 @@
/* decode_as_dlg.c
*
* $Id: decode_as_dlg.c,v 1.21 2001/12/18 19:09:07 gram Exp $
* $Id: decode_as_dlg.c,v 1.22 2002/01/21 07:37:41 guy Exp $
*
* Routines to modify dissector tables on the fly.
*
@ -42,10 +42,10 @@
#include "dlg_utils.h"
#include "globals.h"
#include "simple_dialog.h"
#include "packet.h"
#include <epan/packet.h>
#include "ipproto.h"
#include "ui_util.h"
#include "epan_dissect.h"
#include <epan/epan_dissect.h>
#undef DEBUG

View File

@ -1,7 +1,7 @@
/* display_opts.c
* Routines for packet display windows
*
* $Id: display_opts.c,v 1.24 2002/01/13 20:35:11 guy Exp $
* $Id: display_opts.c,v 1.25 2002/01/21 07:37:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -51,9 +51,9 @@
#endif
#include "globals.h"
#include "resolv.h"
#include "timestamp.h"
#include "packet.h"
#include <epan/resolv.h>
#include <epan/timestamp.h>
#include <epan/packet.h>
#include "file.h"
#include "display_opts.h"
#include "ui_util.h"

View File

@ -1,7 +1,7 @@
/* file_dlg.c
* Dialog boxes for handling files
*
* $Id: file_dlg.c,v 1.47 2002/01/13 20:35:11 guy Exp $
* $Id: file_dlg.c,v 1.48 2002/01/21 07:37:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -42,7 +42,7 @@
#include "globals.h"
#include "gtkglobals.h"
#include "resolv.h"
#include <epan/resolv.h>
#include "keys.h"
#include "filter_prefs.h"
#include "ui_util.h"

View File

@ -1,12 +1,11 @@
/* find_dlg.c
* Routines for "find frame" window
*
* $Id: find_dlg.c,v 1.19 2001/02/01 20:21:21 gram Exp $
* $Id: find_dlg.c,v 1.20 2002/01/21 07:37:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* 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
@ -36,8 +35,8 @@
#include <glib.h>
#include "proto.h"
#include "dfilter/dfilter.h"
#include <epan/proto.h>
#include <epan/dfilter/dfilter.h>
#include "globals.h"
#include "ui_util.h"

View File

@ -1,6 +1,6 @@
/* follow_dlg.c
*
* $Id: follow_dlg.c,v 1.19 2002/01/18 19:46:19 guy Exp $
* $Id: follow_dlg.c,v 1.20 2002/01/21 07:37:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -68,10 +68,10 @@
#include "simple_dialog.h"
#include "packet-ipv6.h"
#include "prefs.h"
#include "resolv.h"
#include <epan/resolv.h>
#include "util.h"
#include "ui_util.h"
#include "epan_dissect.h"
#include <epan/epan_dissect.h>
/* Show Stream */
typedef enum {

View File

@ -1,7 +1,7 @@
/* goto_dlg.c
* Routines for "go to frame" window
*
* $Id: goto_dlg.c,v 1.13 2002/01/11 07:40:31 guy Exp $
* $Id: goto_dlg.c,v 1.14 2002/01/21 07:37:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -37,7 +37,7 @@
#include <glib.h>
#include "proto.h"
#include <epan/proto.h>
#include "globals.h"
#include "goto_dlg.h"

View File

@ -1,6 +1,6 @@
/* help_dlg.c
*
* $Id: help_dlg.c,v 1.20 2002/01/11 07:40:31 guy Exp $
* $Id: help_dlg.c,v 1.21 2002/01/21 07:37:41 guy Exp $
*
* Laurent Deniel <deniel@worldnet.fr>
*
@ -46,7 +46,7 @@
#include "gtkglobals.h"
#include "main.h"
#include "ui_util.h"
#include "proto.h"
#include <epan/proto.h>
typedef enum {
OVERVIEW_HELP,

View File

@ -1,6 +1,6 @@
/* main.c
*
* $Id: main.c,v 1.230 2002/01/18 07:29:40 guy Exp $
* $Id: main.c,v 1.231 2002/01/21 07:37:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -111,13 +111,13 @@
#include <conio.h>
#endif
#include <epan.h>
#include <epan/epan.h>
#include <epan/filesystem.h>
#include <epan_dissect.h>
#include <epan/epan_dissect.h>
#include "main.h"
#include "timestamp.h"
#include "packet.h"
#include <epan/timestamp.h>
#include <epan/packet.h>
#include "capture.h"
#include "summary.h"
#include "file.h"
@ -131,20 +131,20 @@
#include "file_dlg.h"
#include "column.h"
#include "print.h"
#include "resolv.h"
#include <epan/resolv.h>
#ifdef HAVE_LIBPCAP
#include "pcap-util.h"
#endif
#include "statusbar.h"
#include "simple_dialog.h"
#include "proto_draw.h"
#include "dfilter/dfilter.h"
#include <epan/dfilter/dfilter.h>
#include "keys.h"
#include "packet_win.h"
#include "gtkglobals.h"
#include "plugins.h"
#include <epan/plugins.h>
#include "colors.h"
#include "strutil.h"
#include <epan/strutil.h>
#include "register.h"
#include "ringbuffer.h"
#include "ui_util.h"

View File

@ -1,7 +1,7 @@
/* menu.c
* Menu routines
*
* $Id: menu.c,v 1.61 2002/01/13 20:35:12 guy Exp $
* $Id: menu.c,v 1.62 2002/01/21 07:37:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -40,8 +40,8 @@
#include "main.h"
#include "menu.h"
#include "packet.h"
#include "resolv.h"
#include <epan/packet.h>
#include <epan/resolv.h>
#include "prefs.h"
#include "capture_dlg.h"
#include "color_dlg.h"
@ -60,9 +60,9 @@
#include "proto_dlg.h"
#include "proto_hier_stats_dlg.h"
#include "keys.h"
#include "plugins.h"
#include <epan/plugins.h>
#include "tcp_graph.h"
#include "epan_dissect.h"
#include <epan/epan_dissect.h>
GtkWidget *popup_menu_object;

View File

@ -1,7 +1,7 @@
/* nameres_prefs.c
* Dialog box for name resolution preferences
*
* $Id: nameres_prefs.c,v 1.2 2002/01/20 20:05:18 guy Exp $
* $Id: nameres_prefs.c,v 1.3 2002/01/21 07:37:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -33,7 +33,7 @@
#include "globals.h"
#include "nameres_prefs.h"
#include "gtkglobals.h"
#include "resolv.h"
#include <epan/resolv.h>
#include "prefs.h"
#include "prefs_dlg.h"
#include "ui_util.h"

View File

@ -3,7 +3,7 @@
*
* Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
*
* $Id: packet_win.c,v 1.31 2002/01/11 07:40:31 guy Exp $
* $Id: packet_win.c,v 1.32 2002/01/21 07:37:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -45,10 +45,10 @@
#include <unistd.h>
#endif
#include <epan.h>
#include <epan/epan.h>
#include "main.h"
#include "timestamp.h"
#include "packet.h"
#include <epan/timestamp.h>
#include <epan/packet.h>
#include "summary.h"
#include "file.h"
#include "prefs.h"
@ -56,14 +56,14 @@
#include "../menu.h"
#include "column.h"
#include "print.h"
#include "resolv.h"
#include <epan/resolv.h>
#include "packet_win.h"
#include "simple_dialog.h"
#include "proto_draw.h"
#include "keys.h"
#include "gtkglobals.h"
#include "plugins.h"
#include "epan_dissect.h"
#include <epan/plugins.h>
#include <epan/epan_dissect.h>
/* Data structure holding information about a packet-detail window. */
struct PacketWinData {

View File

@ -1,13 +1,12 @@
/* plugins_dlg.c
* Dialog boxes for plugins
*
* $Id: plugins_dlg.c,v 1.22 2001/01/28 21:17:29 guy Exp $
* $Id: plugins_dlg.c,v 1.23 2002/01/21 07:37:42 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
* By Gerald Combs <gerald@ethereal.com>
* Copyright 1999 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
@ -38,7 +37,7 @@
#include <gtk/gtk.h>
#include "globals.h"
#include "plugins.h"
#include <epan/plugins.h>
#include "dlg_utils.h"
#ifdef HAVE_PLUGINS

View File

@ -1,7 +1,7 @@
/* prefs_dlg.c
* Routines for handling preferences
*
* $Id: prefs_dlg.c,v 1.40 2002/01/20 20:05:18 guy Exp $
* $Id: prefs_dlg.c,v 1.41 2002/01/21 07:37:42 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -48,7 +48,7 @@
#include <epan/filesystem.h>
#include "main.h"
#include "packet.h"
#include <epan/packet.h>
#include "file.h"
#include "prefs.h"
#include "column_prefs.h"

View File

@ -1,7 +1,7 @@
/* print_dlg.c
* Dialog boxes for printing
*
* $Id: print_dlg.c,v 1.28 2002/01/11 07:40:31 guy Exp $
* $Id: print_dlg.c,v 1.29 2002/01/21 07:37:42 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -37,7 +37,7 @@
#include "simple_dialog.h"
#include "ui_util.h"
#include "dlg_utils.h"
#include "epan_dissect.h"
#include <epan/epan_dissect.h>
/* On Win32, a GUI application apparently can't use "popen()" (it
"returns an invalid file handle, if used in a Windows program,

View File

@ -1,7 +1,7 @@
/* proto_draw.c
* Routines for GTK+ packet display
*
* $Id: proto_draw.c,v 1.44 2002/01/11 07:40:31 guy Exp $
* $Id: proto_draw.c,v 1.45 2002/01/21 07:37:42 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -47,7 +47,7 @@
#include <string.h>
#include "main.h"
#include "packet.h"
#include <epan/packet.h>
#include "util.h"
#include "menu.h"
#include "keys.h"

View File

@ -3,7 +3,7 @@
* By Pavel Mores <pvl@uh.cz>
* Win32 port: rwh@unifiedtech.com
*
* $Id: tcp_graph.c,v 1.12 2002/01/11 07:40:32 guy Exp $
* $Id: tcp_graph.c,v 1.13 2002/01/21 07:37:42 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -43,7 +43,7 @@
#endif /* WIN32 */
#include "globals.h" /* cfile */
#include "packet.h" /* frame_data */
#include <epan/packet.h> /* frame_data */
#include "gtkglobals.h" /* packet_list */
#include "simple_dialog.h"
#include "ui_util.h"

View File

@ -1,7 +1,7 @@
/* ipproto.c
* Routines for converting IPv4 protocol/v6 nxthdr field into string
*
* $Id: ipproto.c,v 1.16 2002/01/13 20:35:08 guy Exp $
* $Id: ipproto.c,v 1.17 2002/01/21 07:36:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -41,8 +41,8 @@
#endif
#include "ipproto.h"
#include "packet.h"
#include "resolv.h"
#include <epan/packet.h>
#include <epan/resolv.h>
#include "packet-ip.h"
static const value_string ipproto_val[] = {

View File

@ -20,7 +20,7 @@ http://developer.novell.com/ndk/doc/docui/index.htm#../ncp/ncp__enu/data/
for a badly-formatted HTML version of the same PDF.
$Id: ncp2222.py,v 1.13 2002/01/11 14:33:04 gram Exp $
$Id: ncp2222.py,v 1.14 2002/01/21 07:36:31 guy Exp $
Copyright (c) 2000 by Gilbert Ramirez <gram@alumni.rice.edu>
@ -1186,8 +1186,8 @@ def produce_code():
#endif
#include <glib.h>
#include "packet.h"
#include "conversation.h"
#include <epan/packet.h>
#include <epan/conversation.h>
#include "ptvcursor.h"
#include "packet-ncp-int.h"

View File

@ -1,7 +1,7 @@
/* packet-aarp.c
* Routines for Appletalk ARP packet disassembly
*
* $Id: packet-aarp.c,v 1.33 2001/12/10 00:25:25 guy Exp $
* $Id: packet-aarp.c,v 1.34 2002/01/21 07:36:32 guy Exp $
*
* Simon Wilkinson <sxw@dcs.ed.ac.uk>
*
@ -34,8 +34,8 @@
#include <stdio.h>
#include <glib.h>
#include "packet.h"
#include "strutil.h"
#include <epan/packet.h>
#include <epan/strutil.h>
#include "etypes.h"
static int proto_aarp = -1;

View File

@ -8,7 +8,7 @@
* Portions based on information/specs retrieved from the OpenAFS sources at
* www.openafs.org, Copyright IBM.
*
* $Id: packet-afs.c,v 1.38 2002/01/18 21:46:51 nneul Exp $
* $Id: packet-afs.c,v 1.39 2002/01/21 07:36:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -47,9 +47,9 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include "conversation.h"
#include "resolv.h"
#include <epan/packet.h>
#include <epan/conversation.h>
#include <epan/resolv.h>
#include "packet-rx.h"
#include "packet-afs.h"

View File

@ -2,7 +2,7 @@
* Routines for AIM Instant Messenger (OSCAR) dissection
* Copyright 2000, Ralf Hoelzer <ralf@well.com>
*
* $Id: packet-aim.c,v 1.12 2002/01/20 23:42:51 guy Exp $
* $Id: packet-aim.c,v 1.13 2002/01/21 07:36:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -46,8 +46,8 @@
# include "snprintf.h"
#endif
#include "packet.h"
#include "strutil.h"
#include <epan/packet.h>
#include <epan/strutil.h>
#define TCP_PORT_AIM 5190
#define MAX_BUDDYNAME_LENGTH 30

View File

@ -1,7 +1,7 @@
/* packet-arp.c
* Routines for ARP packet disassembly
*
* $Id: packet-arp.c,v 1.48 2001/12/10 00:25:26 guy Exp $
* $Id: packet-arp.c,v 1.49 2002/01/21 07:36:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -32,9 +32,9 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include "strutil.h"
#include "resolv.h"
#include <epan/packet.h>
#include <epan/strutil.h>
#include <epan/resolv.h>
#include "packet-arp.h"
#include "etypes.h"

View File

@ -1,7 +1,7 @@
/* packet-ascend.c
* Routines for decoding Lucent/Ascend packet traces
*
* $Id: packet-ascend.c,v 1.29 2001/12/20 05:34:50 guy Exp $
* $Id: packet-ascend.c,v 1.30 2002/01/21 07:36:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -31,7 +31,7 @@
#include <glib.h>
#include <string.h>
#include "packet.h"
#include <epan/packet.h>
static int proto_ascend = -1;
static int hf_link_type = -1;

View File

@ -1,7 +1,7 @@
/* packet-atalk.c
* Routines for Appletalk packet disassembly (DDP, currently).
*
* $Id: packet-atalk.c,v 1.61 2002/01/20 22:12:25 guy Exp $
* $Id: packet-atalk.c,v 1.62 2002/01/21 07:36:32 guy Exp $
*
* Simon Wilkinson <sxw@dcs.ed.ac.uk>
*
@ -37,11 +37,11 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "etypes.h"
#include "ppptypes.h"
#include "aftypes.h"
#include "atalk-utils.h"
#include <epan/atalk-utils.h>
static int proto_llap = -1;
static int hf_llap_dst = -1;

View File

@ -1,7 +1,7 @@
/* packet-atm.c
* Routines for ATM packet disassembly
*
* $Id: packet-atm.c,v 1.39 2001/12/10 00:25:26 guy Exp $
* $Id: packet-atm.c,v 1.40 2002/01/21 07:36:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -32,9 +32,9 @@
#include <stdio.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "oui.h"
#include "resolv.h"
#include <epan/resolv.h>
#include "packet-snmp.h"

View File

@ -4,7 +4,7 @@
*
* Heikki Vatiainen <hessu@cs.tut.fi>
*
* $Id: packet-auto_rp.c,v 1.16 2001/12/10 00:25:26 guy Exp $
* $Id: packet-auto_rp.c,v 1.17 2002/01/21 07:36:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -39,8 +39,8 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include "resolv.h"
#include <epan/packet.h>
#include <epan/resolv.h>
static gint proto_auto_rp = -1;
static gint ett_auto_rp = -1;

View File

@ -2,7 +2,7 @@
* Routines for BACnet (APDU) dissection
* Copyright 2001, Hartmut Mueller <hartmut@abmlinux.org>, FH Dortmund
*
* $Id: packet-bacapp.c,v 1.8 2001/12/10 00:25:26 guy Exp $
* $Id: packet-bacapp.c,v 1.9 2002/01/21 07:36:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -47,7 +47,7 @@
# include "snprintf.h"
#endif
#include "packet.h"
#include <epan/packet.h>
static const char*
bacapp_type_name (guint8 bacapp_type){

View File

@ -2,7 +2,7 @@
* Routines for BACnet (NPDU) dissection
* Copyright 2001, Hartmut Mueller <hartmut@abmlinux.org>, FH Dortmund
*
* $Id: packet-bacnet.c,v 1.9 2002/01/20 22:12:25 guy Exp $
* $Id: packet-bacnet.c,v 1.10 2002/01/21 07:36:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -47,7 +47,7 @@
# include "snprintf.h"
#endif
#include "packet.h"
#include <epan/packet.h>
static dissector_handle_t bacapp_handle;
static dissector_handle_t data_handle;

View File

@ -1,7 +1,7 @@
/* packet-beep.c
* Routines for BEEP packet disassembly
*
* $Id: packet-beep.c,v 1.2 2001/12/10 00:25:26 guy Exp $
* $Id: packet-beep.c,v 1.3 2002/01/21 07:36:32 guy Exp $
*
* Copyright (c) 2000 by Richard Sharpe <rsharpe@ns.aus.com>
* Modified 2001 Darren New <dnew@invisible.net> for BEEP.
@ -46,10 +46,10 @@
#include <time.h>
#include <glib.h>
#include <string.h>
#include "packet.h"
#include "resolv.h"
#include <epan/packet.h>
#include <epan/resolv.h>
#include "prefs.h"
#include "conversation.h"
#include <epan/conversation.h>
#define TCP_PORT_BEEP 10288
void proto_reg_handoff_beep(void);

View File

@ -2,7 +2,7 @@
* Routines for BGP packet dissection.
* Copyright 1999, Jun-ichiro itojun Hagino <itojun@itojun.org>
*
* $Id: packet-bgp.c,v 1.52 2002/01/17 09:25:55 guy Exp $
* $Id: packet-bgp.c,v 1.53 2002/01/21 07:36:32 guy Exp $
*
* Supports:
* RFC1771 A Border Gateway Protocol 4 (BGP-4)
@ -63,7 +63,7 @@
# include "snprintf.h"
#endif
#include "packet.h"
#include <epan/packet.h>
#include "packet-bgp.h"
#include "packet-ipv6.h"
#include "afn.h"

View File

@ -2,7 +2,7 @@
* Routines for BOOTP/DHCP packet disassembly
* Gilbert Ramirez <gram@alumni.rice.edu>
*
* $Id: packet-bootp.c,v 1.61 2001/12/27 23:53:10 guy Exp $
* $Id: packet-bootp.c,v 1.62 2002/01/21 07:36:32 guy Exp $
*
* The information used comes from:
* RFC 951: Bootstrap Protocol
@ -45,8 +45,8 @@
#include <string.h>
#include <glib.h>
#include "int-64bit.h"
#include "packet.h"
#include <epan/int-64bit.h>
#include <epan/packet.h>
#include "packet-arp.h"
static int proto_bootp = -1;

View File

@ -1,7 +1,7 @@
/* packet-bpdu.c
* Routines for BPDU (Spanning Tree Protocol) disassembly
*
* $Id: packet-bpdu.c,v 1.30 2001/12/10 00:25:26 guy Exp $
* $Id: packet-bpdu.c,v 1.31 2002/01/21 07:36:32 guy Exp $
*
* Copyright 1999 Christophe Tronche <ch.tronche@computer.org>
*
@ -39,10 +39,10 @@
#include <stdio.h>
#include <string.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "llcsaps.h"
#include "ppptypes.h"
#include "resolv.h"
#include <epan/resolv.h>
/* Offsets of fields within a BPDU */

View File

@ -2,7 +2,7 @@
* Routines for BACnet/IP (BVLL, BVLC) dissection
* Copyright 2001, Hartmut Mueller <hartmut@abmlinux.org>, FH Dortmund
*
* $Id: packet-bvlc.c,v 1.8 2001/12/10 00:25:26 guy Exp $
* $Id: packet-bvlc.c,v 1.9 2002/01/21 07:36:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -33,7 +33,7 @@
#include <stdlib.h>
#include <string.h>
#include "prefs.h"
#include "strutil.h"
#include <epan/strutil.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
@ -49,7 +49,7 @@
# include "snprintf.h"
#endif
#include "packet.h"
#include <epan/packet.h>
static int proto_bvlc = -1;
static int hf_bvlc_type = -1;

View File

@ -2,7 +2,7 @@
* Routines for the disassembly of the "Cisco Discovery Protocol"
* (c) Copyright Hannes R. Boehm <hannes@boehm.org>
*
* $Id: packet-cdp.c,v 1.42 2001/12/10 00:25:26 guy Exp $
* $Id: packet-cdp.c,v 1.43 2002/01/21 07:36:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -33,8 +33,8 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include "strutil.h"
#include <epan/packet.h>
#include <epan/strutil.h>
#include "nlpid.h"
/*

View File

@ -1,7 +1,7 @@
/* packet-cgmp.c
* Routines for the disassembly of the Cisco Group Management Protocol
*
* $Id: packet-cgmp.c,v 1.12 2001/12/10 00:25:26 guy Exp $
* $Id: packet-cgmp.c,v 1.13 2002/01/21 07:36:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -32,7 +32,7 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
/*
* See

View File

@ -1,7 +1,7 @@
/* packet-chdlc.c
* Routines for Cisco HDLC packet disassembly
*
* $Id: packet-chdlc.c,v 1.9 2001/12/10 00:25:26 guy Exp $
* $Id: packet-chdlc.c,v 1.10 2002/01/21 07:36:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -31,9 +31,9 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "etypes.h"
#include "resolv.h"
#include <epan/resolv.h>
#include "packet-chdlc.h"
#include "packet-ip.h"

View File

@ -1,7 +1,7 @@
/* packet-clip.c
* Routines for clip packet disassembly
*
* $Id: packet-clip.c,v 1.18 2001/12/10 00:25:26 guy Exp $
* $Id: packet-clip.c,v 1.19 2002/01/21 07:36:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -34,7 +34,7 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-clip.h"
#include "packet-ip.h"

View File

@ -1,7 +1,7 @@
/* packet-clnp.c
* Routines for ISO/OSI network and transport protocol packet disassembly
*
* $Id: packet-clnp.c,v 1.46 2002/01/20 01:04:18 guy Exp $
* $Id: packet-clnp.c,v 1.47 2002/01/21 07:36:32 guy Exp $
* Laurent Deniel <deniel@worldnet.fr>
* Ralf Schneider <Ralf.Schneider@t-online.de>
*
@ -37,7 +37,7 @@
#include <ctype.h>
#include <glib.h>
#include "prefs.h"
#include "packet.h"
#include <epan/packet.h>
#include "reassemble.h"
#include "packet-osi.h"
#include "packet-osi-options.h"

View File

@ -4,7 +4,7 @@
*
* Copyright 2000, Heikki Vatiainen <hessu@cs.tut.fi>
*
* $Id: packet-cops.c,v 1.15 2001/12/10 00:25:26 guy Exp $
* $Id: packet-cops.c,v 1.16 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -34,7 +34,7 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-ipv6.h"
#define TCP_PORT_COPS 3288

View File

@ -5,7 +5,7 @@
* Charles Levert <charles@comm.polymtl.ca>
* Copyright 2001 Charles Levert
*
* $Id: packet-cups.c,v 1.8 2001/12/10 00:25:27 guy Exp $
* $Id: packet-cups.c,v 1.9 2002/01/21 07:36:33 guy Exp $
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -35,8 +35,8 @@
#include <ctype.h>
#include <glib.h>
#include "packet.h"
#include "strutil.h"
#include <epan/packet.h>
#include <epan/strutil.h>
/**********************************************************************/

View File

@ -2,7 +2,7 @@
* Routines for raw data (default case)
* Gilbert Ramirez <gram@alumni.rice.edu>
*
* $Id: packet-data.c,v 1.25 2001/11/26 05:41:11 hagbard Exp $
* $Id: packet-data.c,v 1.26 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -32,7 +32,7 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
/* proto_data cannot be static because it's referenced in the
* print routines

View File

@ -2,7 +2,7 @@
* Routines for dcerpc conv dissection
* Copyright 2001, Todd Sabin <tas@webspan.net>
*
* $Id: packet-dcerpc-conv.c,v 1.1 2001/07/11 01:25:44 guy Exp $
* $Id: packet-dcerpc-conv.c,v 1.2 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -35,7 +35,7 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"

View File

@ -2,7 +2,7 @@
* Routines for SMB \\PIPE\\netdfs packet disassembly
* Copyright 2001, Tim Potter <tpot@samba.org>
*
* $Id: packet-dcerpc-dfs.c,v 1.1 2001/11/21 02:08:57 guy Exp $
* $Id: packet-dcerpc-dfs.c,v 1.2 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -28,7 +28,7 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"
#include "packet-dcerpc-dfs.h"

View File

@ -2,7 +2,7 @@
* Routines for dcerpc endpoint mapper dissection
* Copyright 2001, Todd Sabin <tas@webspan.net>
*
* $Id: packet-dcerpc-epm.c,v 1.3 2001/12/06 23:30:35 guy Exp $
* $Id: packet-dcerpc-epm.c,v 1.4 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -35,7 +35,7 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"

View File

@ -2,7 +2,7 @@
* Routines for SMB \PIPE\lsarpc packet disassembly
* Copyright 2001, Tim Potter <tpot@samba.org>
*
* $Id: packet-dcerpc-lsa.c,v 1.6 2002/01/03 20:42:40 guy Exp $
* $Id: packet-dcerpc-lsa.c,v 1.7 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -30,7 +30,7 @@
#include <glib.h>
#include <string.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"
#include "packet-dcerpc-nt.h"
#include "packet-dcerpc-lsa.h"

View File

@ -2,7 +2,7 @@
* Routines for dcerpc mgmt dissection
* Copyright 2001, Todd Sabin <tas@webspan.net>
*
* $Id: packet-dcerpc-mgmt.c,v 1.1 2001/07/11 01:25:44 guy Exp $
* $Id: packet-dcerpc-mgmt.c,v 1.2 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -35,7 +35,7 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"

View File

@ -2,7 +2,7 @@
* Routines for DCERPC NDR dissection
* Copyright 2001, Todd Sabin <tas@webspan.net>
*
* $Id: packet-dcerpc-ndr.c,v 1.2 2001/12/06 23:30:35 guy Exp $
* $Id: packet-dcerpc-ndr.c,v 1.3 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -35,7 +35,7 @@
#include <ctype.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"

View File

@ -2,7 +2,7 @@
* Routines for SMB \\PIPE\\NETLOGON packet disassembly
* Copyright 2001, Tim Potter <tpot@samba.org>
*
* $Id: packet-dcerpc-netlogon.c,v 1.1 2001/11/21 02:08:57 guy Exp $
* $Id: packet-dcerpc-netlogon.c,v 1.2 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -28,7 +28,7 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"
#include "packet-dcerpc-netlogon.h"

View File

@ -2,7 +2,7 @@
* Routines for DCERPC over SMB packet disassembly
* Copyright 2001, Tim Potter <tpot@samba.org>
*
* $Id: packet-dcerpc-nt.c,v 1.3 2002/01/07 19:55:48 guy Exp $
* $Id: packet-dcerpc-nt.c,v 1.4 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -28,7 +28,7 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"
#include "packet-dcerpc-nt.h"
#include "smb.h"

View File

@ -2,7 +2,7 @@
* Routines for DCOM OXID Resolver
* Copyright 2001, Todd Sabin <tas@webspan.net>
*
* $Id: packet-dcerpc-oxid.c,v 1.1 2001/07/11 01:25:44 guy Exp $
* $Id: packet-dcerpc-oxid.c,v 1.2 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -35,7 +35,7 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"

View File

@ -2,7 +2,7 @@
* Routines for SMB \\PIPE\\winreg packet disassembly
* Copyright 2001, Tim Potter <tpot@samba.org>
*
* $Id: packet-dcerpc-reg.c,v 1.2 2002/01/03 20:42:40 guy Exp $
* $Id: packet-dcerpc-reg.c,v 1.3 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -28,7 +28,7 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"
#include "packet-dcerpc-reg.h"

View File

@ -2,7 +2,7 @@
* Routines for DCOM Remote Activation
* Copyright 2001, Todd Sabin <tas@webspan.net>
*
* $Id: packet-dcerpc-remact.c,v 1.2 2001/07/24 00:38:43 guy Exp $
* $Id: packet-dcerpc-remact.c,v 1.3 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -35,7 +35,7 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"

View File

@ -2,7 +2,7 @@
* Routines for SMB \\PIPE\\samr packet disassembly
* Copyright 2001, Tim Potter <tpot@samba.org>
*
* $Id: packet-dcerpc-samr.c,v 1.2 2001/12/06 23:30:35 guy Exp $
* $Id: packet-dcerpc-samr.c,v 1.3 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -28,7 +28,7 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"
#include "packet-dcerpc-samr.h"
#include "smb.h" /* for "NT_errors[]" */

View File

@ -2,7 +2,7 @@
* Routines for SMB \PIPE\spoolss packet disassembly
* Copyright 2001, Tim Potter <tpot@samba.org>
*
* $Id: packet-dcerpc-spoolss.c,v 1.3 2002/01/07 19:55:48 guy Exp $
* $Id: packet-dcerpc-spoolss.c,v 1.4 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -30,7 +30,7 @@
#include <glib.h>
#include <string.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"
#include "packet-dcerpc-nt.h"
#include "packet-dcerpc-spoolss.h"

View File

@ -2,7 +2,7 @@
* Routines for SMB \\PIPE\\srvsvc packet disassembly
* Copyright 2001, Tim Potter <tpot@samba.org>
*
* $Id: packet-dcerpc-srvsvc.c,v 1.1 2001/11/21 02:08:57 guy Exp $
* $Id: packet-dcerpc-srvsvc.c,v 1.2 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -28,7 +28,7 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"
#include "packet-dcerpc-srvsvc.h"

View File

@ -2,7 +2,7 @@
* Routines for SMB \\PIPE\\wkssvc packet disassembly
* Copyright 2001, Tim Potter <tpot@samba.org>
*
* $Id: packet-dcerpc-wkssvc.c,v 1.1 2001/11/21 02:08:57 guy Exp $
* $Id: packet-dcerpc-wkssvc.c,v 1.2 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -28,7 +28,7 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"
#include "packet-dcerpc-wkssvc.h"

View File

@ -2,7 +2,7 @@
* Routines for DCERPC packet disassembly
* Copyright 2001, Todd Sabin <tas@webspan.net>
*
* $Id: packet-dcerpc.c,v 1.23 2002/01/03 20:42:40 guy Exp $
* $Id: packet-dcerpc.c,v 1.24 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -35,9 +35,9 @@
#include <ctype.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-dcerpc.h"
#include "conversation.h"
#include <epan/conversation.h>
#include "prefs.h"
static const value_string pckt_vals[] = {

View File

@ -1,7 +1,7 @@
/* packet-dcerpc.h
* Copyright 2001, Todd Sabin <tas@webspan.net>
*
* $Id: packet-dcerpc.h,v 1.6 2002/01/03 20:42:40 guy Exp $
* $Id: packet-dcerpc.h,v 1.7 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -25,7 +25,7 @@
#ifndef __PACKET_DCERPC_H__
#define __PACKET_DCERPC_H__
#include "conversation.h"
#include <epan/conversation.h>
typedef struct _e_uuid_t {
guint32 Data1;

View File

@ -3,7 +3,7 @@
* see http://ddt.sourceforge.net/
* Olivier Abad <oabad@cybercable.fr>
*
* $Id: packet-ddtp.c,v 1.18 2001/12/10 00:25:27 guy Exp $
* $Id: packet-ddtp.c,v 1.19 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -41,7 +41,7 @@
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#include "packet.h"
#include <epan/packet.h>
#include "packet-ddtp.h"
static int proto_ddtp = -1;

View File

@ -1,7 +1,7 @@
/* packet-dec-bpdu.c
* Routines for DEC BPDU (DEC Spanning Tree Protocol) disassembly
*
* $Id: packet-dec-bpdu.c,v 1.9 2001/12/10 00:25:27 guy Exp $
* $Id: packet-dec-bpdu.c,v 1.10 2002/01/21 07:36:33 guy Exp $
*
* Copyright 2001 Paul Ionescu <paul@acorp.ro>
*
@ -39,8 +39,8 @@
#include <stdio.h>
#include <string.h>
#include <glib.h>
#include "packet.h"
#include "resolv.h"
#include <epan/packet.h>
#include <epan/resolv.h>
#include "etypes.h"
#include "ppptypes.h"

View File

@ -2,7 +2,7 @@
* Routines for DHCPv6 packet disassembly
* Jun-ichiro itojun Hagino <itojun@iijlab.net>
*
* $Id: packet-dhcpv6.c,v 1.2 2002/01/11 11:07:21 guy Exp $
* $Id: packet-dhcpv6.c,v 1.3 2002/01/21 07:36:33 guy Exp $
*
* The information used comes from:
* draft-ietf-dhc-dhcpv6-22.txt
@ -38,9 +38,9 @@
#include <string.h>
#include <glib.h>
#include "int-64bit.h"
#include "packet.h"
#include "ipv6-utils.h"
#include <epan/int-64bit.h>
#include <epan/packet.h>
#include <epan/ipv6-utils.h>
static int proto_dhcpv6 = -1;
static int hf_dhcpv6_msgtype = -1;

View File

@ -1,7 +1,7 @@
/* packet-diameter.c
* Routines for Diameter packet disassembly
*
* $Id: packet-diameter.c,v 1.40 2002/01/15 10:01:19 guy Exp $
* $Id: packet-diameter.c,v 1.41 2002/01/21 07:36:33 guy Exp $
*
* Copyright (c) 2001 by David Frascone <dave@frascone.com>
*
@ -42,10 +42,10 @@
#include <ctype.h>
#include <time.h>
#include <glib.h>
#include <filesystem.h>
#include <epan/filesystem.h>
#include "xmlstub.h"
#include "packet.h"
#include "resolv.h"
#include <epan/packet.h>
#include <epan/resolv.h>
#include "prefs.h"
/* This must be defined before we include packet-diameter-defs.h */

View File

@ -2,7 +2,7 @@
* Routines for DLSw packet dissection (Data Link Switching)
* Copyright 2001, Paul Ionescu <paul@acorp.ro>
*
* $Id: packet-dlsw.c,v 1.2 2001/12/26 21:21:00 guy Exp $
* $Id: packet-dlsw.c,v 1.3 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -41,7 +41,7 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
static int proto_dlsw = -1;

View File

@ -1,7 +1,7 @@
/* packet-dns.c
* Routines for DNS packet disassembly
*
* $Id: packet-dns.c,v 1.79 2002/01/20 22:12:25 guy Exp $
* $Id: packet-dns.c,v 1.80 2002/01/21 07:36:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -35,9 +35,9 @@
#include <memory.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "ipproto.h"
#include "resolv.h"
#include <epan/resolv.h>
#include "packet-dns.h"
#include "prefs.h"

View File

@ -2,7 +2,7 @@
* Routines for dsi packet dissection
* Copyright 2001, Randy McEoin <rmceoin@pe.com>
*
* $Id: packet-dsi.c,v 1.7 2001/12/10 00:25:27 guy Exp $
* $Id: packet-dsi.c,v 1.8 2002/01/21 07:36:34 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -41,9 +41,9 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include "strutil.h"
#include "conversation.h"
#include <epan/packet.h>
#include <epan/strutil.h>
#include <epan/conversation.h>
/* The information in this module (DSI) comes from:

View File

@ -1,7 +1,7 @@
/* packet-dvmrp.c 2001 Ronnie Sahlberg <See AUTHORS for email>
* Routines for IGMP/DVMRP packet disassembly
*
* $Id: packet-dvmrp.c,v 1.6 2002/01/20 22:12:25 guy Exp $
* $Id: packet-dvmrp.c,v 1.7 2002/01/21 07:36:34 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -63,7 +63,7 @@
#include <string.h>
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "ipproto.h"
#include "in_cksum.h"
#include "packet-dvmrp.h"

View File

@ -1,7 +1,7 @@
/* packet-eap.c
* Routines for EAP Extensible Authentication Protocol header disassembly
*
* $Id: packet-eap.c,v 1.4 2001/12/10 00:25:27 guy Exp $
* $Id: packet-eap.c,v 1.5 2002/01/21 07:36:34 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -35,7 +35,7 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-ieee8023.h"
#include "packet-ipx.h"
#include "packet-llc.h"

View File

@ -1,7 +1,7 @@
/* packet-eapol.c
* Routines for EAPOL 802.1X authentication header disassembly
*
* $Id: packet-eapol.c,v 1.4 2001/12/10 00:25:27 guy Exp $
* $Id: packet-eapol.c,v 1.5 2002/01/21 07:36:34 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -35,7 +35,7 @@
#endif
#include <glib.h>
#include "packet.h"
#include <epan/packet.h>
#include "packet-ieee8023.h"
#include "packet-ipx.h"
#include "packet-llc.h"

Some files were not shown because too many files have changed in this diff Show More