From 98b4c7cf048cb442b691216abb33555cf6a46076 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Tue, 11 Mar 2025 21:36:55 -0400 Subject: [PATCH] http: Disable binding to localhost on mobile until I can solve 'address not available'. --- src/http.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/http.c b/src/http.c index 3b676943..c57392cd 100644 --- a/src/http.c +++ b/src/http.c @@ -716,6 +716,11 @@ int tf_http_listen(tf_http_t* http, int port, bool local_only, tf_tls_context_t* if (r == 0) { + if (tf_util_is_mobile()) + { + local_only = false; + } + #if defined(__HAIKU__) /* ** Binding to IPv6 here fails with an odd error, and the socket