commit 8d96ccbc80ee877a5dcd3a82859775f63865e99c parent 7d0a24c454adba00a9f90962fdf3bc54a07f5e7a Author: Bart Polot <bart@net.in.tum.de> Date: Thu, 8 Oct 2015 17:27:14 +0000 - only request reply if no key is known Diffstat:
| M | src/cadet/gnunet-service-cadet_tunnel.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/cadet/gnunet-service-cadet_tunnel.c b/src/cadet/gnunet-service-cadet_tunnel.c @@ -2117,7 +2117,7 @@ ax_kx_resend (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) return; } - GCT_send_ax_kx (t, GNUNET_YES); + GCT_send_ax_kx (t, CADET_TUNNEL_KEY_SENT >= t->estate); }