commit ce17101938e3809d6a59a13903e4a82e189d1c49
parent 2527e084099d4dbc5a8f6ab826e9c8da08bda538
Author: Bart Polot <bart@net.in.tum.de>
Date: Mon, 27 Apr 2015 19:15:22 +0000
- handle AX messages
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/cadet/gnunet-service-cadet_peer.c b/src/cadet/gnunet-service-cadet_peer.c
@@ -490,7 +490,8 @@ static struct GNUNET_CORE_MessageHandler core_handlers[] = {
{&GCC_handle_poll, GNUNET_MESSAGE_TYPE_CADET_POLL,
sizeof (struct GNUNET_CADET_Poll)},
{&GCC_handle_kx, GNUNET_MESSAGE_TYPE_CADET_KX, 0},
- {&GCC_handle_encrypted, GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED, 0}
+ {&GCC_handle_encrypted, GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED, 0},
+ {&GCC_handle_encrypted, GNUNET_MESSAGE_TYPE_CADET_AX, 0}
};