summaryrefslogtreecommitdiff
path: root/sbin/isakmpd/ike_quick_mode.c
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1999-04-03 09:14:53 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1999-04-03 09:14:53 +0000
commit37a797706c7fbd16374ae4c2fb644bb74d37130f (patch)
treebff8ab91c4dc232bc17688274878e6c6b8e2f5d0 /sbin/isakmpd/ike_quick_mode.c
parent077380138904cba9d23e1be38c68cf0bc7582701 (diff)
Merge with EOM 1.74
refcount the exchange when delayed processing is scheduled for QM 1999 copyrights
Diffstat (limited to 'sbin/isakmpd/ike_quick_mode.c')
-rw-r--r--sbin/isakmpd/ike_quick_mode.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/sbin/isakmpd/ike_quick_mode.c b/sbin/isakmpd/ike_quick_mode.c
index 5504e996a8b..ed3d79d56f1 100644
--- a/sbin/isakmpd/ike_quick_mode.c
+++ b/sbin/isakmpd/ike_quick_mode.c
@@ -1,8 +1,8 @@
-/* $OpenBSD: ike_quick_mode.c,v 1.9 1999/03/31 20:29:57 niklas Exp $ */
-/* $EOM: ike_quick_mode.c,v 1.72 1999/03/31 20:22:16 niklas Exp $ */
+/* $OpenBSD: ike_quick_mode.c,v 1.10 1999/04/03 09:14:52 niklas Exp $ */
+/* $EOM: ike_quick_mode.c,v 1.74 1999/04/03 09:13:55 niklas Exp $ */
/*
- * Copyright (c) 1998 Niklas Hallqvist. All rights reserved.
+ * Copyright (c) 1998, 1999 Niklas Hallqvist. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -729,6 +729,7 @@ initiator_send_HASH (struct message *msg)
if (ie->group)
message_register_post_send (msg, gen_g_xy);
sa_reference (msg->isakmp_sa);
+ exchange_reference (exchange);
message_register_post_send (msg, post_quick_mode);
return 0;
@@ -836,6 +837,7 @@ post_quick_mode (struct message *msg)
}
}
sa_release (isakmp_sa);
+ exchange_release (exchange);
}
/*
@@ -1212,6 +1214,7 @@ responder_recv_HASH (struct message *msg)
}
sa_reference (msg->isakmp_sa);
+ exchange_reference (exchange);
post_quick_mode (msg);
return 0;