From a062160b295ff62d36aca0642888478c7872a047 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Thu, 13 Dec 2018 11:49:13 +0100 Subject: [PATCH] [ROSAUTOTEST] Forget about HTTP, go over HTTPS directly ONLINE-855 --- modules/rostests/rosautotest/CWebService.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rostests/rosautotest/CWebService.cpp b/modules/rostests/rosautotest/CWebService.cpp index c3c1605bf9e..2a01baa9cbd 100644 --- a/modules/rostests/rosautotest/CWebService.cpp +++ b/modules/rostests/rosautotest/CWebService.cpp @@ -26,7 +26,7 @@ CWebService::CWebService() if(!m_hInet) FATAL("InternetOpenW failed\n"); - m_hHTTP = InternetConnectW(m_hInet, szHostname, INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0); + m_hHTTP = InternetConnectW(m_hInet, szHostname, INTERNET_DEFAULT_HTTPS_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0); if(!m_hHTTP) FATAL("InternetConnectW failed\n");