taler-ios

iOS apps for GNU Taler (wallet)
Log | Files | Refs | README | LICENSE

commit f4b9c76c4d2448d1cc098297e9046009c5e9bc1f
parent 9a16e79c13782230a63b465d0d5e1e2385bbcead
Author: Marc Stibane <marc@taler.net>
Date:   Fri, 20 Feb 2026 00:23:30 +0100

remove curl

Diffstat:
MTalerWallet1/Quickjs/quickjs.swift | 6+-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/TalerWallet1/Quickjs/quickjs.swift b/TalerWallet1/Quickjs/quickjs.swift @@ -1,5 +1,5 @@ /* - * This file is part of GNU Taler, ©2022-25 Taler Systems S.A. + * This file is part of GNU Taler, ©2022-26 Taler Systems S.A. * See LICENSE.md */ /** @@ -69,12 +69,8 @@ public class Quickjs { // acts as singleton, since only one instance ever e TALER_WALLET_set_log_handler(talerWalletInstance, logging_callback, Unmanaged.passUnretained(self).toOpaque()) -#if USE_HTTP_CLIENT_CURL - let http_impl = js_curl_http_client_create() -#else let http_impl = TALER_pack_http_client_implementation(request_create, request_cancel, Unmanaged.passUnretained(self).toOpaque()) -#endif // http_impl got malloc'd, and could possibly be free'd when the app terminates TALER_set_http_client_implementation(talerWalletInstance, http_impl) // - but we never free anything on termination, thus we don't save http_impl here