Deleted Added
full compact
1c1
< /* $FreeBSD: head/sys/netipsec/ipsec.h 196882 2009-09-06 07:30:21Z pjd $ */
---
> /* $FreeBSD: head/sys/netipsec/ipsec.h 207369 2010-04-29 11:52:42Z bz $ */
336a337,345
>
> #ifdef REGRESSION
> VNET_DECLARE(int, ipsec_replay);
> VNET_DECLARE(int, ipsec_integrity);
>
> #define V_ipsec_replay VNET(ipsec_replay)
> #define V_ipsec_integrity VNET(ipsec_integrity)
> #endif
>
338c347,351
< #define V_ipsec4stat VNET(ipsec4stat)
---
> VNET_DECLARE(struct secpolicy, ip4_def_policy);
> VNET_DECLARE(int, ip4_esp_trans_deflev);
> VNET_DECLARE(int, ip4_esp_net_deflev);
> VNET_DECLARE(int, ip4_ah_trans_deflev);
> VNET_DECLARE(int, ip4_ah_net_deflev);
340d352
< #define V_ip4_ah_offsetmask VNET(ip4_ah_offsetmask)
342,343c354,359
< #define V_ip4_ipsec_dfbit VNET(ip4_ipsec_dfbit)
< VNET_DECLARE(int, ip4_esp_trans_deflev);
---
> VNET_DECLARE(int, ip4_ipsec_ecn);
> VNET_DECLARE(int, ip4_esp_randpad);
> VNET_DECLARE(int, crypto_support);
>
> #define V_ipsec4stat VNET(ipsec4stat)
> #define V_ip4_def_policy VNET(ip4_def_policy)
345d360
< VNET_DECLARE(int, ip4_esp_net_deflev);
347d361
< VNET_DECLARE(int, ip4_ah_trans_deflev);
349d362
< VNET_DECLARE(int, ip4_ah_net_deflev);
351,353c364,365
< VNET_DECLARE(struct secpolicy, ip4_def_policy);
< #define V_ip4_def_policy VNET(ip4_def_policy)
< VNET_DECLARE(int, ip4_ipsec_ecn);
---
> #define V_ip4_ah_offsetmask VNET(ip4_ah_offsetmask)
> #define V_ip4_ipsec_dfbit VNET(ip4_ipsec_dfbit)
355d366
< VNET_DECLARE(int, ip4_esp_randpad);
357,358d367
<
< VNET_DECLARE(int, crypto_support);
361,369d369
< extern int ip4_ah_cleartos;
<
< #ifdef REGRESSION
< VNET_DECLARE(int, ipsec_replay);
< #define V_ipsec_replay VNET(ipsec_replay)
< VNET_DECLARE(int, ipsec_integrity);
< #define V_ipsec_integrity VNET(ipsec_integrity)
< #endif
<