summaryrefslogtreecommitdiff
path: root/src/testing
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-08-19 13:52:16 +0200
committerChristian Grothoff <christian@grothoff.org>2021-08-19 13:52:16 +0200
commit4067891ed9f66eb5e47a709d3ea21c2ed36a1e86 (patch)
tree6af58030bf1d7b85999fe346ff5d1b1c64705fbc /src/testing
parent81d0e570be0db784e98fdb7ad63f9b65c6745be3 (diff)
downloadanastasis-4067891ed9f66eb5e47a709d3ea21c2ed36a1e86.tar.gz
anastasis-4067891ed9f66eb5e47a709d3ea21c2ed36a1e86.tar.bz2
anastasis-4067891ed9f66eb5e47a709d3ea21c2ed36a1e86.zip
modify lib/ to pass 202 status back to reducer
Diffstat (limited to 'src/testing')
-rw-r--r--src/testing/testing_api_cmd_keyshare_lookup.c2
-rw-r--r--src/testing/testing_cmd_challenge_answer.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/testing/testing_api_cmd_keyshare_lookup.c b/src/testing/testing_api_cmd_keyshare_lookup.c
index c9f8e45..04ecf43 100644
--- a/src/testing/testing_api_cmd_keyshare_lookup.c
+++ b/src/testing/testing_api_cmd_keyshare_lookup.c
@@ -206,6 +206,8 @@ keyshare_lookup_cb (void *cls,
break;
case ANASTASIS_KSD_AUTHENTICATION_TIMEOUT:
break;
+ case ANASTASIS_KSD_EXTERNAL_CHALLENGE_INSTRUCTIONS:
+ break;
}
TALER_TESTING_interpreter_next (ksls->is);
}
diff --git a/src/testing/testing_cmd_challenge_answer.c b/src/testing/testing_cmd_challenge_answer.c
index d7d11a1..ff897f3 100644
--- a/src/testing/testing_cmd_challenge_answer.c
+++ b/src/testing/testing_cmd_challenge_answer.c
@@ -1,6 +1,6 @@
/*
This file is part of Anastasis
- Copyright (C) 2020 Anastasis SARL
+ Copyright (C) 2020, 2021 Anastasis SARL
Anastasis is free software; you can redistribute it and/or modify it under the
terms of the GNU Lesser General Public License as published by the Free Software
@@ -239,6 +239,8 @@ challenge_answer_cb (void *af_cls,
break;
case ANASTASIS_CHALLENGE_STATUS_AUTH_TIMEOUT:
break;
+ case ANASTASIS_CHALLENGE_STATUS_EXTERNAL_INSTRUCTIONS:
+ break;
}
TALER_TESTING_interpreter_next (cs->is);
}