fixes to get uio'd readi for char devs
[unix-history] / usr / src / sys / netinet / in_systm.h
CommitLineData
9c8cd691 1/* in_systm.h 4.13 82/06/24 */
8e112dd4
BJ
2
3/*
4 * Miscellaneous internetwork
5 * definitions for kernel.
6 */
7
9c8692e9 8#ifndef LOCORE
8e112dd4
BJ
9/*
10 * Network types.
11 *
12 * Internally the system keeps counters in the headers with the bytes
13 * swapped so that VAX instructions will work on them. It reverses
14 * the bytes before transmission at each protocol level. The n_ types
15 * represent the types with the bytes in ``high-ender'' order.
16 */
17typedef u_short n_short; /* short as received from the net */
18typedef u_long n_long; /* long as received from the net */
8e112dd4
BJ
19
20typedef u_long n_time; /* ms since 00:00 GMT, byte rev */
9c8692e9 21#endif
8e112dd4
BJ
22
23/*
8a13b737 24 * The internet code runs off software interrupts.
8a13b737 25 *
8e112dd4
BJ
26 * You can switch into the network by doing splnet() and return by splx().
27 * The software interrupt level for the network is higher than the software
28 * level for the clock (so you can enter the network in routines called
9c8cd691 29 * at timeout time).
8e112dd4 30 */
9c8692e9
BJ
31#define setsoftnet() mtpr(SIRR, 12)
32
33/*
34 * Each ``pup-level-1'' input queue has a bit in a ``netisr'' status
35 * word which is used to de-multiplex a single software
36 * interrupt used for scheduling the network code to calls
37 * on the lowest level routine of each protocol.
38 */
39#define NETISR_RAW 0 /* same as AF_UNSPEC */
40#define NETISR_IP 2 /* same as AF_INET */
41#define NETISR_NS 6 /* same as AF_NS */
42
43#define schednetisr(anisr) { netisr |= 1<<(anisr); setsoftnet(); }
44
45#ifndef LOCORE
46#ifdef KERNEL
47int netisr; /* scheduling bits for network */
2b4b57cd 48n_time iptime();
8e112dd4 49#endif
9c8692e9 50#endif