twister

HTTP fault injector for testing
Log | Files | Refs | README | LICENSE

commit 36135ea1eb9c4427806097b91d6944e42043f64a
parent 18542dd98644d24c3e7c9fd7304c3fc42915957c
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Fri, 14 Jun 2019 02:32:25 +0200

temporarily silent bug

Diffstat:
Msrc/twister/taler-twister-service.c | 20++++++++++++++++----
1 file changed, 16 insertions(+), 4 deletions(-)

diff --git a/src/twister/taler-twister-service.c b/src/twister/taler-twister-service.c @@ -2607,6 +2607,18 @@ handle_flip_path_dl (void *cls, send_acknowledgement (c); } +/** + * Control handler for flipping JSON strings into request objects + * + * @param cls message queue for sending replies + * @param src received message + */ +static int +check_flip_path_ul (void *cls, + const struct TWISTER_FlipPath *src) +{ + return GNUNET_OK; +} /** * Control handler for flipping JSON strings into request objects @@ -2706,10 +2718,10 @@ GNUNET_SERVICE_MAIN struct TWISTER_DeletePath, NULL), - GNUNET_MQ_hd_fixed_size (flip_path_ul, - TWISTER_MESSAGE_TYPE_FLIP_PATH_UL, - struct TWISTER_FlipPath, - NULL), + GNUNET_MQ_hd_var_size (flip_path_ul, + TWISTER_MESSAGE_TYPE_FLIP_PATH_UL, + struct TWISTER_FlipPath, + NULL), GNUNET_MQ_hd_fixed_size (flip_path_dl, TWISTER_MESSAGE_TYPE_FLIP_PATH_DL,