Changeset 71431 in vbox for trunk/src/VBox/HostServices/GuestControl
- Timestamp:
- Mar 21, 2018 1:30:12 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121399
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestControl/service.cpp
r71343 r71431 1278 1278 * from the internal command list. 1279 1279 * 1280 * This also tells the host callback(s) waiting for a reply for this command that this command1281 * has been skipped by returning VERR_NOT_SUPPORTED to the host.1282 *1283 1280 * @return VBox status code. 1284 1281 * @param u32ClientID The client's ID. … … 1302 1299 if (itClientState != mClientStateMap.end()) 1303 1300 { 1304 const HostCommand *pCurCmd = itClientState->second.GetCurrent(); 1305 if (pCurCmd) 1306 { 1307 /* Tell the host that the guest did not handle the current command. */ 1308 uint32_t cHstParms = 0; 1309 VBOXHGCMSVCPARM aHstParms[4]; 1310 aHstParms[cHstParms++].setUInt32(pCurCmd->mContextID); 1311 aHstParms[cHstParms++].setUInt32(0); /* Notification type (None / generic). */ 1312 aHstParms[cHstParms++].setUInt32((uint32_t)VERR_NOT_SUPPORTED); /** @todo int vs. uint32_t! */ 1313 aHstParms[cHstParms++].setPointer(NULL, 0); /* Payload (none). */ 1314 1315 itClientState->second.DequeueCurrent(); 1316 1317 rc = hostCallback(GUEST_MSG_REPLY, cHstParms, aHstParms); 1318 } 1319 else 1320 rc = VERR_NOT_FOUND; /* Should never happen. */ 1301 itClientState->second.DequeueCurrent(); 1302 rc = VINF_SUCCESS; 1321 1303 } 1322 1304 else 1323 rc = VERR_NOT_FOUND; /* Ditto. */1305 rc = VERR_NOT_FOUND; 1324 1306 1325 1307 LogFlowFunc(("[Client %RU32] Skipped current message, rc=%Rrc\n", u32ClientID, rc));
Note:
See TracChangeset
for help on using the changeset viewer.