1/*	$FreeBSD$	*/
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#ifdef	linux
30#include <linux/sockios.h>
31#endif
32#include "tcpip.h"
33#include "ipt.h"
34
35extern	int	resolve __P((char *, char *));
36extern	int	arp __P((char *, char *));
37extern	u_short	chksum __P((u_short *, int));
38extern	int	send_ether __P((int, char *, int, struct in_addr));
39extern	int	send_ip __P((int, int, ip_t *, struct in_addr, int));
40extern	int	send_tcp __P((int, int, ip_t *, struct in_addr));
41extern	int	send_udp __P((int, int, ip_t *, struct in_addr));
42extern	int	send_icmp __P((int, int, ip_t *, struct in_addr));
43extern	int	send_packet __P((int, int, ip_t *, struct in_addr));
44extern	int	send_packets __P((char *, int, ip_t *, struct in_addr));
45extern	u_short	ipseclevel __P((char *));
46extern	u_32_t	buildopts __P((char *, char *, int));
47extern	int	addipopt __P((char *, struct ipopt_names *, int, char *));
48extern	int	initdevice __P((char *, int));
49extern	int	sendip __P((int, char *, int));
50#ifdef	linux
51extern	struct	sock	*find_tcp __P((int, struct tcpiphdr *));
52#else
53extern	struct	tcpcb	*find_tcp __P((int, struct tcpiphdr *));
54#endif
55extern	int	ip_resend __P((char *, int, struct ipread *, struct in_addr, char *));
56
57extern	void	ip_test1 __P((char *, int, ip_t *, struct in_addr, int));
58extern	void	ip_test2 __P((char *, int, ip_t *, struct in_addr, int));
59extern	void	ip_test3 __P((char *, int, ip_t *, struct in_addr, int));
60extern	void	ip_test4 __P((char *, int, ip_t *, struct in_addr, int));
61extern	void	ip_test5 __P((char *, int, ip_t *, struct in_addr, int));
62extern	void	ip_test6 __P((char *, int, ip_t *, struct in_addr, int));
63extern	void	ip_test7 __P((char *, int, ip_t *, struct in_addr, int));
64extern	int	do_socket __P((char *, int, struct tcpiphdr *, struct in_addr));
65extern	int	kmemcpy __P((char *, void *, int));
66
67#define	KMCPY(a,b,c)	kmemcpy((char *)(a), (void *)(b), (int)(c))
68
69#ifndef	OPT_RAW
70#define	OPT_RAW	0x80000
71#endif
72