https://git.reactos.org/?p=reactos.git;a=commitdiff;h=3c02749f92835ad0b730a8...
commit 3c02749f92835ad0b730a8d2f278206fb4a27847 Author: Colin Finck colin@reactos.org AuthorDate: Sat Apr 4 12:57:50 2020 +0200 Commit: Colin Finck colin@reactos.org CommitDate: Sat Apr 4 12:57:50 2020 +0200
[ROSAUTOTEST] Use tlsv1.reactos.org for submitting test results now that reactos.org is TLS 1.2+
We still need to be able to submit test results from Windows Server 2003, which supports TLS 1.0 only. --- modules/rostests/rosautotest/CWebService.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/rostests/rosautotest/CWebService.cpp b/modules/rostests/rosautotest/CWebService.cpp index 9edcebe7433..2830e978435 100644 --- a/modules/rostests/rosautotest/CWebService.cpp +++ b/modules/rostests/rosautotest/CWebService.cpp @@ -1,13 +1,13 @@ /* * PROJECT: ReactOS Automatic Testing Utility - * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) + * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) * PURPOSE: Class implementing the interface to the "testman" Web Service - * COPYRIGHT: Copyright 2009-2015 Colin Finck (colin@reactos.org) + * COPYRIGHT: Copyright 2009-2020 Colin Finck (colin@reactos.org) */
#include "precomp.h"
-static const WCHAR szHostname[] = L"reactos.org"; +static const WCHAR szHostname[] = L"tlsv1.reactos.org"; static const WCHAR szServerFile[] = L"testman/webservice/";
/**