ipsec.c (d24ff94b24d8486ab73cfcd7eb8facb0c4330271) ipsec.c (a0196c3c891ccf2ee88854f9798fd8e44d0e9f16)
1/* $FreeBSD$ */
2/* $KAME: ipsec.c,v 1.103 2001/05/24 07:14:18 sakane Exp $ */
3
4/*-
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

87#include <netipsec/key.h>
88#include <netipsec/keydb.h>
89#include <netipsec/key_debug.h>
90
91#include <netipsec/xform.h>
92
93#include <machine/in_cksum.h>
94
1/* $FreeBSD$ */
2/* $KAME: ipsec.c,v 1.103 2001/05/24 07:14:18 sakane Exp $ */
3
4/*-
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

87#include <netipsec/key.h>
88#include <netipsec/keydb.h>
89#include <netipsec/key_debug.h>
90
91#include <netipsec/xform.h>
92
93#include <machine/in_cksum.h>
94
95#define IPSEC_DEBUG
95#ifdef IPSEC_DEBUG
96int ipsec_debug = 1;
97#else
98int ipsec_debug = 0;
99#endif
100
101/* NB: name changed so netstat doesn't use it */
102struct newipsecstat newipsecstat;

--- 1829 unchanged lines hidden ---
96#ifdef IPSEC_DEBUG
97int ipsec_debug = 1;
98#else
99int ipsec_debug = 0;
100#endif
101
102/* NB: name changed so netstat doesn't use it */
103struct newipsecstat newipsecstat;

--- 1829 unchanged lines hidden ---