Changeset 59655 in vbox
- Timestamp:
- Feb 12, 2016 1:32:32 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 105509
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/vboxweb.cpp
r59654 r59655 896 896 else 897 897 { 898 #ifdef WITH_OPENSSL 899 const char *pszSsl = g_fSSL ? "SSL, " : ""; 900 #else /* !WITH_OPENSSL */ 901 const char *pszSsl = ""; 902 #endif /*!WITH_OPENSSL */ 898 903 LogRel(("Socket connection successful: host = %s, port = %u, %smaster socket = %d\n", 899 904 (g_pcszBindToHost) ? g_pcszBindToHost : "default (localhost)", 900 g_uBindToPort, 901 #ifdef WITH_OPENSSL 902 g_fSSL ? "SSL, " : "", 903 #else /* !WITH_OPENSSL */ 904 "", 905 #endif /*!WITH_OPENSSL */ 906 m)); 905 g_uBindToPort, pszSsl, m)); 907 906 908 907 // initialize thread queue, mutex and eventsem 909 908 g_pSoapQ = new SoapQ(&soap); 910 909 911 for (uint64_t i = 1; 912 g_fKeepRunning; 913 i++) 910 for (uint64_t i = 1; g_fKeepRunning; i++) 914 911 { 915 912 // call gSOAP to handle incoming SOAP connection
Note:
See TracChangeset
for help on using the changeset viewer.