Deleted Added
sdiff udiff text old ( 153881 ) new ( 170268 )
full compact
1/* $FreeBSD: head/contrib/ipfilter/ipsend/sdlpi.c 170268 2007-06-04 02:54:36Z darrenr $ */
2
3/*
4 * (C)opyright 1992-1998 Darren Reed. (from tcplog)
5 *
6 * See the IPFILTER.LICENCE file for details on licencing.
7 *
8 */
9

--- 12 unchanged lines hidden (view full) ---

22#include <sys/stropts.h>
23
24#ifdef sun
25# include <sys/pfmod.h>
26# include <sys/bufmod.h>
27#endif
28#ifdef __osf__
29# include <sys/dlpihdr.h>
30# include "radix_ipf_local.h"
31#else
32# include <sys/dlpi.h>
33#endif
34#ifdef __hpux
35# include <sys/dlpi_ext.h>
36#endif
37
38#include <net/if.h>

--- 5 unchanged lines hidden (view full) ---

44#include <netinet/udp.h>
45#include <netinet/udp_var.h>
46#include <netinet/tcp.h>
47
48#include "ipsend.h"
49
50#if !defined(lint)
51static const char sccsid[] = "@(#)sdlpi.c 1.3 10/30/95 (C)1995 Darren Reed";
52static const char rcsid[] = "@(#)$Id: sdlpi.c,v 2.8.2.2 2007/02/17 12:41:51 darrenr Exp $";
53#endif
54
55#define CHUNKSIZE 8192
56#define BUFSPACE (4*CHUNKSIZE)
57
58
59/*
60 * Be careful to only include those defined in the flags option for the

--- 114 unchanged lines hidden ---