diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2001-11-20 06:36:09 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2001-11-20 06:36:09 +0000 |
| commit | 3878fff7db791319d1e75f8d1f8a22f465360693 (patch) | |
| tree | 348013711bf9fb5908dff97b1ce0bd3ac962a9ab /include/protocols | |
| parent | 67bac73ca988aa3847ec8a5f68cb25f724b6045b (diff) | |
Notes
Diffstat (limited to 'include/protocols')
| -rw-r--r-- | include/protocols/timed.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/include/protocols/timed.h b/include/protocols/timed.h index 6c6a05e86bbb..75b27ed69d9c 100644 --- a/include/protocols/timed.h +++ b/include/protocols/timed.h @@ -31,6 +31,8 @@ * SUCH DAMAGE. * * @(#)timed.h 8.1 (Berkeley) 6/2/93 + * + * $FreeBSD$ */ #ifndef _PROTOCOLS_TIMED_H_ @@ -44,11 +46,14 @@ #define ANYADDR NULL struct tsp { - u_char tsp_type; - u_char tsp_vers; - u_short tsp_seq; + u_int8_t tsp_type; + u_int8_t tsp_vers; + u_int16_t tsp_seq; union { - struct timeval tspu_time; + struct { + int32_t tv_sec; + int32_t tv_usec; + } tspu_time; char tspu_hopcnt; } tsp_u; char tsp_name[MAXHOSTNAMELEN]; |
