Changeset 6349 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jan 14, 2008 12:42:42 PM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/HappyHttp.cpp
r5999 r6349 399 399 m_State = REQ_STARTED; 400 400 401 char req[ 512 ]; 402 sprintf( req, "%s %s HTTP/1.1", method, url ); 403 m_Buffer.push_back( req ); 401 m_Buffer.push_back (string (method) + " " + string (url) + " HTTP/1.1"); 404 402 405 403 putheader( "Host", m_Host.c_str() ); // required for HTTP1.1 -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxRegistrationDlg.ui.h
r5999 r6349 361 361 if (mHandshake) 362 362 { 363 /* Verifying key correctness */ 364 if (QString (aTotalData).find (QRegExp ("^[a-zA-Z0-9]{32}$"))) 365 { 366 abortRegisterRequest (tr ("Could not perform connection handshake.")); 367 return; 368 } 369 363 370 /* Registration arguments initializing */ 364 371 QString version = vboxGlobal().virtualBox().GetVersion();
Note:
See TracChangeset
for help on using the changeset viewer.