formatting cleanup (checking by torek for sklower)
[unix-history] / usr / src / sys / netns / spp_debug.h
CommitLineData
8ae0e4b4 1/*
240edf1f
KS
2 * Copyright (c) 1984, 1985, 1986, 1987 Regents of the University of California.
3 * All rights reserved.
8ae0e4b4 4 *
dbf0c423 5 * %sccs.include.redist.c%
240edf1f 6 *
dbf0c423 7 * @(#)spp_debug.h 7.4 (Berkeley) %G%
8ae0e4b4 8 */
13cf97fd
KS
9
10struct spp_debug {
11 u_long sd_time;
12 short sd_act;
13 short sd_ostate;
14 caddr_t sd_cb;
15 short sd_req;
16 struct spidp sd_si;
17 struct sppcb sd_sp;
18};
19
20#define SA_INPUT 0
21#define SA_OUTPUT 1
22#define SA_USER 2
23#define SA_RESPOND 3
24#define SA_DROP 4
25
26#ifdef SANAMES
27char *sanames[] =
28 { "input", "output", "user", "respond", "drop" };
29#endif
30
31#define SPP_NDEBUG 100
32struct spp_debug spp_debug[SPP_NDEBUG];
33int spp_debx;