Changeset 53186 in vbox
- Timestamp:
- Nov 3, 2014 2:20:34 PM (10 years ago)
- Location:
- trunk/src/VBox/Main/webservice
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/vboxweb.cpp
r53185 r53186 6 6 * server, to which clients can connect. 7 7 * 8 * Copyright (C) 2007-201 3Oracle Corporation8 * Copyright (C) 2007-2014 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 844 844 845 845 #ifdef WITH_OPENSSL 846 if (g_fSSL && soap_ssl_server_context(&soap, SOAP_SSL_ DEFAULT| SOAP_TLSv1, g_pcszKeyFile,846 if (g_fSSL && soap_ssl_server_context(&soap, SOAP_SSL_REQUIRE_SERVER_AUTHENTICATION | SOAP_TLSv1, g_pcszKeyFile, 847 847 g_pcszPassword, g_pcszCACert, g_pcszCAPath, 848 848 g_pcszDHFile, g_pcszRandFile, g_pcszSID)) -
trunk/src/VBox/Main/webservice/webtest.cpp
r46478 r53186 4 4 * functionality of VBoxManage for testing purposes. 5 5 * 6 * Copyright (C) 2006-201 3Oracle Corporation6 * Copyright (C) 2006-2014 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 113 113 // In a real world setup please use at least SOAP_SSL_DEFAULT and provide 114 114 // the necessary CA certificate for validating the server's certificate. 115 if (fSSL && soap_ssl_client_context(&soap, SOAP_SSL_NO_AUTHENTICATION ,115 if (fSSL && soap_ssl_client_context(&soap, SOAP_SSL_NO_AUTHENTICATION | SOAP_TLSv1, 116 116 NULL /*clientkey*/, NULL /*password*/, 117 117 NULL /*cacert*/, NULL /*capath*/,
Note:
See TracChangeset
for help on using the changeset viewer.