sa.h (86ba8605) sa.h (5678a57a)
1/* $OpenBSD: sa.h,v 1.47 2005/09/23 14:44:03 hshoexer Exp $ */
1/* $OpenBSD: sa.h,v 1.48 2006/06/02 19:35:55 hshoexer Exp $ */
2/* $EOM: sa.h,v 1.58 2000/10/10 12:39:01 provos Exp $ */
3
4/*
5 * Copyright (c) 1998, 1999, 2001 Niklas Hallqvist. All rights reserved.
6 * Copyright (c) 1999, 2001 Angelos D. Keromytis. All rights reserved.
7 * Copyright (c) 2004 H�kan Olsson. All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without

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

200 /* The events that will occur when an SA has timed out. */
201 struct event *soft_death;
202 struct event *death;
203
204 struct event *nat_t_keepalive;
205
206 /* IKE DPD (RFC3706) message sequence number. */
207 u_int32_t dpd_seq; /* sent */
2/* $EOM: sa.h,v 1.58 2000/10/10 12:39:01 provos Exp $ */
3
4/*
5 * Copyright (c) 1998, 1999, 2001 Niklas Hallqvist. All rights reserved.
6 * Copyright (c) 1999, 2001 Angelos D. Keromytis. All rights reserved.
7 * Copyright (c) 2004 H�kan Olsson. All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without

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

200 /* The events that will occur when an SA has timed out. */
201 struct event *soft_death;
202 struct event *death;
203
204 struct event *nat_t_keepalive;
205
206 /* IKE DPD (RFC3706) message sequence number. */
207 u_int32_t dpd_seq; /* sent */
208 u_int32_t dpd_rseq; /* recieved */
208 u_int32_t dpd_rseq; /* received */
209 u_int32_t dpd_failcount; /* # of subsequent failures */
210 u_int32_t dpd_rdupcount; /* # of subsequent duplicates */
211 struct event *dpd_event; /* time of next event */
212};
213
214/* This SA is alive. */
215#define SA_FLAG_READY 0x01
216

--- 89 unchanged lines hidden ---
209 u_int32_t dpd_failcount; /* # of subsequent failures */
210 u_int32_t dpd_rdupcount; /* # of subsequent duplicates */
211 struct event *dpd_event; /* time of next event */
212};
213
214/* This SA is alive. */
215#define SA_FLAG_READY 0x01
216

--- 89 unchanged lines hidden ---