https://git.reactos.org/?p=reactos.git;a=commitdiff;h=7d1f270918338d0844db6…
commit 7d1f270918338d0844db6f99ce0eba970931eda8
Author: Colin Finck <colin(a)reactos.org>
AuthorDate: Sat Apr 4 20:34:41 2020 +0200
Commit: Colin Finck <colin(a)reactos.org>
CommitDate: Sat Apr 4 20:35:58 2020 +0200
[ROSAUTOTEST] Submit results to
https://reactos.org:8443 instead of
https://tlsv1.reactos.org
It is much easier server-side to maintain a different TLS configuration on another
port rather than another subdomain.
---
modules/rostests/rosautotest/CWebService.cpp | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/modules/rostests/rosautotest/CWebService.cpp
b/modules/rostests/rosautotest/CWebService.cpp
index 2830e978435..85ead6d9135 100644
--- a/modules/rostests/rosautotest/CWebService.cpp
+++ b/modules/rostests/rosautotest/CWebService.cpp
@@ -7,7 +7,8 @@
#include "precomp.h"
-static const WCHAR szHostname[] = L"tlsv1.reactos.org";
+static const WCHAR szHostname[] = L"reactos.org";
+static const INTERNET_PORT ServerPort = 8443;
static const WCHAR szServerFile[] = L"testman/webservice/";
/**
@@ -26,7 +27,7 @@ CWebService::CWebService()
if(!m_hInet)
FATAL("InternetOpenW failed\n");
- m_hHTTP = InternetConnectW(m_hInet, szHostname, INTERNET_DEFAULT_HTTPS_PORT, NULL,
NULL, INTERNET_SERVICE_HTTP, 0, 0);
+ m_hHTTP = InternetConnectW(m_hInet, szHostname, ServerPort, NULL, NULL,
INTERNET_SERVICE_HTTP, 0, 0);
if(!m_hHTTP)
FATAL("InternetConnectW failed\n");