blob: 7d9e4f7f161f3e8e1a04b17a54047321994b1a63 [file] [log] [blame] [raw]
/*
* ipsend.h (C) 1997-1998 Darren Reed
*
* This was written to test what size TCP fragments would get through
* various TCP/IP packet filters, as used in IP firewalls. In certain
* conditions, enough of the TCP header is missing for unpredictable
* results unless the filter is aware that this can happen.
*
* The author provides this program as-is, with no gaurantee for its
* suitability for any specific purpose. The author takes no responsibility
* for the misuse/abuse of this program and provides it for the sole purpose
* of testing packet filter policies. This file maybe distributed freely
* providing it is not modified and that this notice remains in tact.
*
*/
#include <net/if.h>
#include "ipf.h"
#ifdef linux
#include <linux/sockios.h>
#endif
#include "tcpip.h"
#include "ipt.h"
extern int resolve(char *, char *);
extern int arp(char *, char *);
extern u_short chksum(u_short *, int);
extern int send_ether(int, char *, int, struct in_addr);
extern int send_ip(int, int, ip_t *, struct in_addr, int);
extern int send_tcp(int, int, ip_t *, struct in_addr);
extern int send_udp(int, int, ip_t *, struct in_addr);
extern int send_icmp(int, int, ip_t *, struct in_addr);
extern int send_packet(int, int, ip_t *, struct in_addr);
extern int send_packets(char *, int, ip_t *, struct in_addr);
extern u_short ipseclevel(char *);
extern u_32_t buildopts(char *, char *, int);
extern int addipopt(char *, struct ipopt_names *, int, char *);
extern int initdevice(char *, int);
extern int sendip(int, char *, int);
#ifdef linux
extern struct sock *find_tcp(int, struct tcpiphdr *);
#else
extern struct tcpcb *find_tcp(int, struct tcpiphdr *);
#endif
extern int ip_resend(char *, int, struct ipread *, struct in_addr, char *);
extern void ip_test1(char *, int, ip_t *, struct in_addr, int);
extern void ip_test2(char *, int, ip_t *, struct in_addr, int);
extern void ip_test3(char *, int, ip_t *, struct in_addr, int);
extern void ip_test4(char *, int, ip_t *, struct in_addr, int);
extern void ip_test5(char *, int, ip_t *, struct in_addr, int);
extern void ip_test6(char *, int, ip_t *, struct in_addr, int);
extern void ip_test7(char *, int, ip_t *, struct in_addr, int);
extern int do_socket(char *, int, struct tcpiphdr *, struct in_addr);
extern int kmemcpy(char *, void *, int);
#define KMCPY(a,b,c) kmemcpy((char *)(a), (void *)(b), (int)(c))
#ifndef OPT_RAW
#define OPT_RAW 0x80000
#endif