1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* $NetBSD: debuggers.h,v 1.3 1997/06/26 07:21:45 thorpej Exp $ */
/*
* debuggers.h
* Generated by config program
*/
#include <ipkdb/ipkdb.h>
struct ipkdb_allow ipkdballow[] = {
#ifdef DEBUG_BY_TOOLS
{ { 255, 255, 255, 0 }, { 192, 76, 135, 0 } },
#endif
/*
* This entry doesn't ever match,
* but is needed if there is no other entry in this table.
*/
{ { 0, 0, 0, 0 }, { 1, 1, 1, 1 } }
};
int ipkdbcount = sizeof(ipkdballow)/sizeof(ipkdballow[0]);
#ifdef IPKDBKEY
char *ipkdbkey = IPKDBKEY;
#endif
|