challenger

OAuth 2.0-based authentication service that validates user can receive messages at a certain address
Log | Files | Refs | Submodules | README | LICENSE

commit 053e9d37087c4b51628c69eb703289eb0d6e4a2c
parent d8d009521d384a78b9889e18bb470f9281b5e8f1
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 30 Jul 2026 10:38:26 +0200

implement #11645

Diffstat:
Msrc/challenger/challenger-httpd_config.c | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/challenger/challenger-httpd_config.c b/src/challenger/challenger-httpd_config.c @@ -33,6 +33,7 @@ * 4: added support to pre-initialize address during /setup. * 5: added support for GET /authorize to have a link in challenge messages to the form * 6: added ``address_type`` field in ``/config`` + * 7: added ``build_version`` field in ``/config`` */ @@ -52,6 +53,8 @@ CH_handler_config (struct CH_HandlerContext *hc, "urn:net:taler:specs:challenger:c-reference"), GNUNET_JSON_pack_string ("name", "challenger"), + GNUNET_JSON_pack_string ("build_version", + PACKAGE_VERSION), GNUNET_JSON_pack_string ("address_type", CH_address_type), GNUNET_JSON_pack_string ("address_hint", @@ -59,7 +62,7 @@ CH_handler_config (struct CH_HandlerContext *hc, GNUNET_JSON_pack_object_incref ("restrictions", CH_restrictions), GNUNET_JSON_pack_string ("version", - "6:0:4")); + "7:0:5")); } return MHD_queue_response (hc->connection, MHD_HTTP_OK,