ipsec.h (c58cde95d1c86956fc3cd0f8299f463c3a36f527) | ipsec.h (6fd91c14d60d43004354d7163152f80762e3c0ec) |
---|---|
1/* $FreeBSD$ */ 2/* $KAME: ipsec.h,v 1.53 2001/11/20 08:32:38 itojun 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 --- 218 unchanged lines hidden (view full) --- 227 /* security policy violation for outbound process */ 228 u_quad_t out_nosa; /* outbound SA is unavailable */ 229 u_quad_t out_inval; /* outbound process failed due to EINVAL */ 230 u_quad_t out_nomem; /* inbound processing failed due to ENOBUFS */ 231 u_quad_t out_noroute; /* there is no route */ 232 u_quad_t out_esphist[256]; 233 u_quad_t out_ahhist[256]; 234 u_quad_t out_comphist[256]; | 1/* $FreeBSD$ */ 2/* $KAME: ipsec.h,v 1.53 2001/11/20 08:32:38 itojun 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 --- 218 unchanged lines hidden (view full) --- 227 /* security policy violation for outbound process */ 228 u_quad_t out_nosa; /* outbound SA is unavailable */ 229 u_quad_t out_inval; /* outbound process failed due to EINVAL */ 230 u_quad_t out_nomem; /* inbound processing failed due to ENOBUFS */ 231 u_quad_t out_noroute; /* there is no route */ 232 u_quad_t out_esphist[256]; 233 u_quad_t out_ahhist[256]; 234 u_quad_t out_comphist[256]; |
235 236 u_quad_t spdcachelookup; 237 u_quad_t spdcachemiss; |
|
235}; 236 237/* statistics for ipsec processing */ 238struct newipsecstat { 239 u_int32_t ips_in_polvio; /* input: sec policy violation */ 240 u_int32_t ips_out_polvio; /* output: sec policy violation */ 241 u_int32_t ips_out_nosa; /* output: SA unavailable */ 242 u_int32_t ips_out_nomem; /* output: no memory available */ --- 181 unchanged lines hidden --- | 238}; 239 240/* statistics for ipsec processing */ 241struct newipsecstat { 242 u_int32_t ips_in_polvio; /* input: sec policy violation */ 243 u_int32_t ips_out_polvio; /* output: sec policy violation */ 244 u_int32_t ips_out_nosa; /* output: SA unavailable */ 245 u_int32_t ips_out_nomem; /* output: no memory available */ --- 181 unchanged lines hidden --- |