blob: 537c15b901d94a3e512d93f68ce5bcaf5d8e0436 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/*
* (C)opyright 1993,1994,1995 by Darren Reed.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and due credit is given
* to the original author and the contributors.
*
* @(#)ipf.h 1.7 10/15/95
*/
#define OPT_INQUE FR_INQUE /* 0x0001 */
#define OPT_REMOVE 0x0002
#define OPT_OUTQUE FR_OUTQUE /* 0x0004 */
#define OPT_DEBUG 0x0008
#define OPT_SHOWLIST 0x0010
#define OPT_VERBOSE 0x0020
#define OPT_LOG FR_LOG /* 0x0040 */
#define OPT_DONOTHING 0x0080
#define OPT_INACTIVE FR_INACTIVE /* 0x0800 */
#define OPT_HITS 0x10000
#define OPT_BRIEF 0x20000
extern struct frentry *parse();
extern void printfr(), binprint();
#if defined(__SVR4) || defined(__svr4__)
#define index strchr
#define bzero(a,b) memset(a, 0, b)
#define bcopy(a,b,c) memmove(b,a,c)
#endif
struct ipopt_names {
int on_value;
int on_bit;
int on_siz;
char *on_name;
};
extern u_long hostnum(), optname();
extern void printpacket();
|