From b37b3492ae0e7fa8fd46275257ac943b9460f9b8 Mon Sep 17 00:00:00 2001 From: Steveice10 Date: Fri, 21 Jul 2017 15:19:40 -0700 Subject: [PATCH] Cut HTTP timeout in half. --- source/core/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/util.c b/source/core/util.c index 423c27d..fc6cf6e 100644 --- a/source/core/util.c +++ b/source/core/util.c @@ -682,7 +682,7 @@ u16* util_select_bnr_title(BNR* bnr) { return bnr->titles[systemLanguage]; } -#define HTTP_TIMEOUT 30000000000 +#define HTTP_TIMEOUT 15000000000 #define MAKE_HTTP_USER_AGENT(major, minor, micro) ("Mozilla/5.0 (Nintendo 3DS; Mobile; rv:10.0) Gecko/20100101 FBI/" #major "." #minor "." #micro) #define HTTP_USER_AGENT MAKE_HTTP_USER_AGENT(VERSION_MAJOR, VERSION_MINOR, VERSION_MICRO)