ipsend.h revision 344833
1/*	$FreeBSD: stable/11/contrib/ipfilter/ipsend/ipsend.h 344833 2019-03-06 02:37:25Z cy $	*/
2
3/*
4 * ipsend.h (C) 1997-1998 Darren Reed
5 *
6 * This was written to test what size TCP fragments would get through
7 * various TCP/IP packet filters, as used in IP firewalls.  In certain
8 * conditions, enough of the TCP header is missing for unpredictable
9 * results unless the filter is aware that this can happen.
10 *
11 * The author provides this program as-is, with no gaurantee for its
12 * suitability for any specific purpose.  The author takes no responsibility
13 * for the misuse/abuse of this program and provides it for the sole purpose
14 * of testing packet filter policies.  This file maybe distributed freely
15 * providing it is not modified and that this notice remains in tact.
16 *
17 */
18#ifndef	__P
19# ifdef	__STDC__
20#  define	__P(x)	x
21# else
22#  define	__P(x)	()
23# endif
24#endif
25
26#include <net/if.h>
27
28#include "ipf.h"
29/* XXX:	The following is needed by tcpip.h */
30#include <netinet/ip_var.h>
31#include "netinet/tcpip.h"
32#include "ipt.h"
33
34extern	int	resolve __P((char *, char *));
35extern	int	arp __P((char *, char *));
36extern	u_short	chksum __P((u_short *, int));
37extern	int	send_ether __P((int, char *, int, struct in_addr));
38extern	int	send_ip __P((int, int, ip_t *, struct in_addr, int));
39extern	int	send_tcp __P((int, int, ip_t *, struct in_addr));
40extern	int	send_udp __P((int, int, ip_t *, struct in_addr));
41extern	int	send_icmp __P((int, int, ip_t *, struct in_addr));
42extern	int	send_packet __P((int, int, ip_t *, struct in_addr));
43extern	int	send_packets __P((char *, int, ip_t *, struct in_addr));
44extern	u_short	ipseclevel __P((char *));
45extern	u_32_t	buildopts __P((char *, char *, int));
46extern	int	addipopt __P((char *, struct ipopt_names *, int, char *));
47extern	int	initdevice __P((char *, int));
48extern	int	sendip __P((int, char *, int));
49extern	struct	tcpcb	*find_tcp __P((int, struct tcpiphdr *));
50extern	int	ip_resend __P((char *, int, struct ipread *, struct in_addr, char *));
51
52extern	void	ip_test1 __P((char *, int, ip_t *, struct in_addr, int));
53extern	void	ip_test2 __P((char *, int, ip_t *, struct in_addr, int));
54extern	void	ip_test3 __P((char *, int, ip_t *, struct in_addr, int));
55extern	void	ip_test4 __P((char *, int, ip_t *, struct in_addr, int));
56extern	void	ip_test5 __P((char *, int, ip_t *, struct in_addr, int));
57extern	void	ip_test6 __P((char *, int, ip_t *, struct in_addr, int));
58extern	void	ip_test7 __P((char *, int, ip_t *, struct in_addr, int));
59extern	int	do_socket __P((char *, int, struct tcpiphdr *, struct in_addr));
60extern	int	kmemcpy __P((char *, void *, int));
61
62#define	KMCPY(a,b,c)	kmemcpy((char *)(a), (void *)(b), (int)(c))
63
64#ifndef	OPT_RAW
65#define	OPT_RAW	0x80000
66#endif
67