NetBSD/usr.sbin/ipf/ipftest/ipt.h

33 lines
717 B
C
Raw Normal View History

1998-05-17 20:29:42 +04:00
/* $NetBSD: ipt.h,v 1.1.1.9 1998/05/17 16:29:46 veego Exp $ */
1997-03-29 05:49:40 +03:00
/*
1997-10-30 08:27:24 +03:00
* Copyright (C) 1993-1997 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.
1997-10-30 08:27:24 +03:00
* Id: ipt.h,v 2.0.2.7 1997/09/28 07:12:00 darrenr Exp
*/
1997-05-25 15:45:50 +04:00
#ifndef __IPT_H__
#define __IPT_H__
#include <fcntl.h>
1997-03-29 05:49:40 +03:00
#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
struct ipread {
1997-03-29 05:49:40 +03:00
int (*r_open) __P((char *));
int (*r_close) __P((void));
int (*r_readip) __P((char *, int, char **, int *));
};
1997-03-29 05:49:40 +03:00
extern void debug __P((char *, ...));
extern void verbose __P((char *, ...));
1997-05-25 15:45:50 +04:00
#endif /* __IPT_H__ */