fixup fsid correctly in union_getattr
[unix-history] / usr / src / sys / netinet / in_systm.h
CommitLineData
8ae0e4b4 1/*
e7a3707f
KB
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
8ae0e4b4 4 *
dbf0c423 5 * %sccs.include.redist.c%
2b6b6284 6 *
e7a3707f 7 * @(#)in_systm.h 8.1 (Berkeley) %G%
8ae0e4b4 8 */
8e112dd4
BJ
9
10/*
11 * Miscellaneous internetwork
12 * definitions for kernel.
13 */
14
8e112dd4
BJ
15/*
16 * Network types.
17 *
18 * Internally the system keeps counters in the headers with the bytes
19 * swapped so that VAX instructions will work on them. It reverses
20 * the bytes before transmission at each protocol level. The n_ types
21 * represent the types with the bytes in ``high-ender'' order.
22 */
23typedef u_short n_short; /* short as received from the net */
24typedef u_long n_long; /* long as received from the net */
8e112dd4
BJ
25
26typedef u_long n_time; /* ms since 00:00 GMT, byte rev */
27
9c8692e9 28#ifdef KERNEL
f0bb362c 29n_time iptime __P((void));
8e112dd4 30#endif