Deleted Added
sdiff udiff text old ( 228736 ) new ( 228811 )
full compact
1/* $OpenBSD: if_pfsync.c,v 1.110 2009/02/24 05:39:19 dlg Exp $ */
2
3/*
4 * Copyright (c) 2002 Michael Shalayeff
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

40 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
41 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
42 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
43 */
44
45#ifdef __FreeBSD__
46#include "opt_inet.h"
47#include "opt_inet6.h"
48#include "opt_bpf.h"
49#include "opt_pf.h"
50
51#include <sys/cdefs.h>
52__FBSDID("$FreeBSD: head/sys/contrib/pf/net/if_pfsync.c 228736 2011-12-20 13:53:31Z glebius $");
53
54#ifdef DEV_BPF
55#define NBPFILTER DEV_BPF
56#else
57#define NBPFILTER 0
58#endif
59
60#ifdef DEV_PFSYNC
61#define NPFSYNC DEV_PFSYNC
62#else
63#define NPFSYNC 0
64#endif
65#endif /* __FreeBSD__ */
66

--- 3411 unchanged lines hidden ---