fixup fsid correctly in union_getattr
[unix-history] / usr / src / sys / netinet / in_systm.h
... / ...
CommitLineData
1/*
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * %sccs.include.redist.c%
6 *
7 * @(#)in_systm.h 8.1 (Berkeley) %G%
8 */
9
10/*
11 * Miscellaneous internetwork
12 * definitions for kernel.
13 */
14
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 */
25
26typedef u_long n_time; /* ms since 00:00 GMT, byte rev */
27
28#ifdef KERNEL
29n_time iptime __P((void));
30#endif