Files
seta75D d6fe8fe829 Init
2021-10-11 22:19:34 -03:00

47 lines
1.1 KiB
C

/* @(#)05 1.1 src/bos/usr/include/netns/spp_debug.h, sysxxns, bos411, 9428A410j 2/26/91 10:01:59 */
/*
* COMPONENT_NAME: (SYSXXNS) Xerox Network services
*
* FUNCTIONS:
*
* ORIGINS: 26 27
*
* (C) COPYRIGHT International Business Machines Corp. 1988, 1989
* All Rights Reserved
* Licensed Materials - Property of IBM
*
* US Government Users Restricted Rights - Use, duplication or
* disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
*
* Copyright (c) 1980, 1986 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
* @(#)spp_debug.h 7.4 (Berkeley) 6/28/90
*
*/
struct spp_debug {
u_long sd_time;
short sd_act;
short sd_ostate;
caddr_t sd_cb;
short sd_req;
struct spidp sd_si;
struct sppcb sd_sp;
};
#define SA_INPUT 0
#define SA_OUTPUT 1
#define SA_USER 2
#define SA_RESPOND 3
#define SA_DROP 4
#ifdef SANAMES
char *sanames[] =
{ "input", "output", "user", "respond", "drop" };
#endif
#define SPP_NDEBUG 100
struct spp_debug spp_debug[SPP_NDEBUG];
int spp_debx;