2005-04-25 18:20:15 +00:00
|
|
|
/* $FreeBSD$ */
|
2005-04-25 17:31:50 +00:00
|
|
|
|
1997-02-09 22:50:16 +00:00
|
|
|
/*
|
2013-08-11 14:28:45 +00:00
|
|
|
* Copyright (C) 2012 by Darren Reed.
|
1997-02-09 22:50:16 +00:00
|
|
|
*
|
2001-07-28 11:59:33 +00:00
|
|
|
* See the IPFILTER.LICENCE file for details on licencing.
|
2005-04-25 17:31:50 +00:00
|
|
|
*
|
2013-08-11 14:28:45 +00:00
|
|
|
* $Id$
|
1997-02-09 22:50:16 +00:00
|
|
|
*/
|
|
|
|
|
1997-05-25 15:45:04 +00:00
|
|
|
#ifndef __IPT_H__
|
|
|
|
#define __IPT_H__
|
|
|
|
|
1999-11-08 20:51:23 +00:00
|
|
|
#ifndef __P
|
|
|
|
# define P_DEF
|
|
|
|
# ifdef __STDC__
|
|
|
|
# define __P(x) x
|
|
|
|
# else
|
|
|
|
# define __P(x) ()
|
|
|
|
# endif
|
1997-04-03 10:22:02 +00:00
|
|
|
#endif
|
|
|
|
|
1999-11-08 20:51:23 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
|
1997-02-09 22:50:16 +00:00
|
|
|
|
|
|
|
struct ipread {
|
1997-04-03 10:22:02 +00:00
|
|
|
int (*r_open) __P((char *));
|
|
|
|
int (*r_close) __P((void));
|
2013-08-11 14:28:45 +00:00
|
|
|
int (*r_readip) __P((mb_t *, char **, int *));
|
2005-04-25 17:31:50 +00:00
|
|
|
int r_flags;
|
1997-02-09 22:50:16 +00:00
|
|
|
};
|
1997-04-03 10:22:02 +00:00
|
|
|
|
2005-04-25 17:31:50 +00:00
|
|
|
#define R_DO_CKSUM 0x01
|
|
|
|
|
1999-11-08 20:51:23 +00:00
|
|
|
#ifdef P_DEF
|
|
|
|
# undef __P
|
|
|
|
# undef P_DEF
|
|
|
|
#endif
|
|
|
|
|
1997-05-25 15:45:04 +00:00
|
|
|
#endif /* __IPT_H__ */
|