[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.
This commit is contained in:
Colin Finck 2020-04-04 20:34:41 +02:00
parent 946ee611a3
commit 7d1f270918
No known key found for this signature in database
GPG key ID: 1BA74E70456BA1A9

View file

@ -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");