As pointed out by Guy: timestats uses packet_info so it belongs in epan

not wsutil.

svn path=/trunk/; revision=50159
This commit is contained in:
Jeff Morriss 2013-06-26 00:18:44 +00:00
parent e101fe1160
commit 74dc568ef1
21 changed files with 19 additions and 19 deletions

View File

@ -1472,6 +1472,7 @@ set(LIBWIRESHARK_FILES
tap.c
tcap-persistentdata.c
timestamp.c
timestats.c
tfs.c
to_str.c
tvbparse.c

View File

@ -89,6 +89,7 @@ LIBWIRESHARK_SRC = \
tap.c \
tcap-persistentdata.c \
timestamp.c \
timestats.c \
tfs.c \
to_str.c \
tvbparse.c \
@ -237,6 +238,7 @@ LIBWIRESHARK_INCLUDES = \
tap-voip.h \
tcap-persistentdata.h \
timestamp.h \
timestats.h \
tfs.h \
time_fmt.h \
to_str.h \

View File

@ -28,7 +28,7 @@
#include <glib.h>
#include "epan/packet_info.h"
#include "nstime.h"
#include "wsutil/nstime.h"
/* Summary of time statistics*/
typedef struct _timestat_t {

View File

@ -35,7 +35,7 @@
#include <epan/tap.h>
#include "epan/gcp.h"
#include "wsutil/timestats.h"
#include "epan/timestats.h"
#include "../file.h"
#include "../globals.h"
#include "../stat_menu.h"

View File

@ -33,7 +33,7 @@
#include <epan/stat_cmd_args.h>
#include <epan/value_string.h>
#include <epan/dissectors/packet-afp.h>
#include "wsutil/timestats.h"
#include "epan/timestats.h"
/* used to keep track of the statistics for an entire program interface */
typedef struct _afpstat_t {

View File

@ -35,7 +35,7 @@
#include "epan/asn1.h"
#include "epan/dissectors/packet-camel.h"
#include "epan/camel-persistentdata.h"
#include "wsutil/timestats.h"
#include "epan/timestats.h"
#include "epan/stat_cmd_args.h"

View File

@ -45,7 +45,7 @@
#include <epan/timestamp.h>
#include <epan/stat_cmd_args.h>
#include <epan/dissectors/packet-ip.h>
#include "wsutil/timestats.h"
#include "epan/timestats.h"
/* For checksum */

View File

@ -34,7 +34,7 @@
#include <epan/stat_cmd_args.h>
#include "epan/value_string.h"
#include <epan/dissectors/packet-h225.h>
#include "wsutil/timestats.h"
#include "epan/timestats.h"
/* following values represent the size of their valuestring arrays */
#define NUM_RAS_STATS 7

View File

@ -34,7 +34,7 @@
#include <epan/stat_cmd_args.h>
#include "epan/value_string.h"
#include "epan/gcp.h"
#include "wsutil/timestats.h"
#include "epan/timestats.h"
#include <epan/prefs-int.h>
#include "tap-megaco-common.h"

View File

@ -32,7 +32,7 @@
#include <epan/stat_cmd_args.h>
#include "epan/value_string.h"
#include "epan/dissectors/packet-mgcp.h"
#include "wsutil/timestats.h"
#include "epan/timestats.h"
#define NUM_TIMESTATS 11

View File

@ -32,7 +32,7 @@
#include <epan/stat_cmd_args.h>
#include "epan/value_string.h"
#include <epan/dissectors/packet-radius.h>
#include "wsutil/timestats.h"
#include "epan/timestats.h"
typedef enum _radius_category {
RADIUS_CAT_OVERALL = 0,

View File

@ -32,7 +32,7 @@
#include <epan/stat_cmd_args.h>
#include "epan/value_string.h"
#include <epan/dissectors/packet-smb.h>
#include "wsutil/timestats.h"
#include "epan/timestats.h"
#define MICROSECS_PER_SEC 1000000
#define NANOSECS_PER_SEC 1000000000

View File

@ -54,7 +54,7 @@
#include <epan/in_cksum.h>
#include "../stat_menu.h"
#include "wsutil/timestats.h"
#include "epan/timestats.h"
#include "ui/simple_dialog.h"

View File

@ -36,7 +36,7 @@
#include <epan/tap.h>
#include <epan/dissectors/packet-h225.h>
#include "wsutil/timestats.h"
#include "epan/timestats.h"
#include "ui/simple_dialog.h"
#include "../file.h"
#include "../stat_menu.h"

View File

@ -38,7 +38,7 @@
#include "epan/gcp.h"
#include <epan/prefs-int.h>
#include "wsutil/timestats.h"
#include "epan/timestats.h"
#include "ui/simple_dialog.h"
#include "../file.h"
#include "../stat_menu.h"

View File

@ -35,7 +35,7 @@
#include <epan/tap.h>
#include "epan/dissectors/packet-mgcp.h"
#include "wsutil/timestats.h"
#include "epan/timestats.h"
#include "ui/simple_dialog.h"
#include "../file.h"
#include "../stat_menu.h"

View File

@ -35,7 +35,7 @@
#include <epan/tap.h>
#include <epan/dissectors/packet-radius.h>
#include "wsutil/timestats.h"
#include "epan/timestats.h"
#include "ui/simple_dialog.h"
#include "../file.h"
#include "../stat_menu.h"

View File

@ -29,7 +29,7 @@
#include <gtk/gtk.h>
#include "wsutil/nstime.h"
#include "wsutil/timestats.h"
#include "epan/timestats.h"
/** @file
* Helper routines common to all service response time statistics tap.

View File

@ -50,7 +50,6 @@ set(WSUTIL_FILES
nstime.c
privileges.c
str_util.c
timestats.c
type_util.c
${WSUTIL_PLATFORM_FILES}
)

View File

@ -44,7 +44,6 @@ LIBWSUTIL_SRC = \
nstime.c \
privileges.c \
str_util.c \
timestats.c \
type_util.c
# Header files that are not generated from other files
@ -63,5 +62,4 @@ LIBWSUTIL_INCLUDES = \
nstime.h \
privileges.h \
str_util.h \
timestats.h \
type_util.h