aboutsummaryrefslogtreecommitdiff
path: root/timed.h
diff options
context:
space:
mode:
authorRui Paulo <rpaulo@FreeBSD.org>2009-03-21 16:23:46 +0000
committerRui Paulo <rpaulo@FreeBSD.org>2009-03-21 16:23:46 +0000
commit0ea0e7ad03dff03bb5448f640640d7904c01c8d4 (patch)
treef2a455fa35943d2b7d4901bf95ac5bf39229115c /timed.h
parent81ceab7147ecaac14fa1889cdb461205e1002393 (diff)
downloadsrc-0ea0e7ad03dff03bb5448f640640d7904c01c8d4.tar.gz
src-0ea0e7ad03dff03bb5448f640640d7904c01c8d4.zip
Import tcpdump 4.0.0.vendor/tcpdump/4.0.0
Notes
Notes: svn path=/vendor/tcpdump/dist/; revision=190203 svn path=/vendor/tcpdump/4.0.0/; revision=190204; tag=vendor/tcpdump/4.0.0
Diffstat (limited to 'timed.h')
-rw-r--r--timed.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/timed.h b/timed.h
index 0a5c5fe57a7d..15135e7372cd 100644
--- a/timed.h
+++ b/timed.h
@@ -1,4 +1,4 @@
-/* @(#) $Header: /tcpdump/master/tcpdump/timed.h,v 1.5 2002/12/11 07:14:12 guy Exp $ (LBL) */
+/* @(#) $Header: /tcpdump/master/tcpdump/timed.h,v 1.5.6.1 2008-02-05 19:46:58 guy Exp $ (LBL) */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@@ -44,12 +44,17 @@
#define TSPVERSION 1
#define ANYADDR NULL
+struct tsp_timeval {
+ u_int32_t tv_sec;
+ u_int32_t tv_usec;
+};
+
struct tsp {
u_int8_t tsp_type;
u_int8_t tsp_vers;
u_int16_t tsp_seq;
union {
- struct timeval tspu_time;
+ struct tsp_timeval tspu_time;
int8_t tspu_hopcnt;
} tsp_u;
int8_t tsp_name[256];