mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
[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:
parent
946ee611a3
commit
7d1f270918
1 changed files with 3 additions and 2 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue