From 788eb5ce670e19fdb5bac7df08215db6a4a3c845 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Tue, 25 Jun 2013 08:53:39 -0400 Subject: [PATCH] update for redis module --- daemon/main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/daemon/main.c b/daemon/main.c index 9f70342aa..1a53891be 100644 --- a/daemon/main.c +++ b/daemon/main.c @@ -350,6 +350,8 @@ void redis_mod_verify(void *dlh) { check_struct_size(call); check_struct_size(callstream); + check_struct_size(crypto_suite); + check_struct_size(crypto_context); check_struct_offset(call, callmaster); check_struct_offset(call, chunk); @@ -368,9 +370,12 @@ void redis_mod_verify(void *dlh) { check_struct_offset(streamrelay, peer); check_struct_offset(streamrelay, up); check_struct_offset(streamrelay, last); + check_struct_offset(streamrelay, handler); + check_struct_offset(streamrelay, crypto); check_struct_offset(stream, ip46); check_struct_offset(stream, num); + check_struct_offset(stream, protocol); } void create_everything(struct main_context *ctx) {