VirtualBox

Ignore:
Timestamp:
Mar 21, 2018 1:30:12 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
121399
Message:

Guest Control/service: Partly reverted r121279 (also let the host know that the current message has been skipped.), not needed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/GuestControl/service.cpp

    r71343 r71431  
    12781278 * from the internal command list.
    12791279 *
    1280  * This also tells the host callback(s) waiting for a reply for this command that this command
    1281  * has been skipped by returning VERR_NOT_SUPPORTED to the host.
    1282  *
    12831280 * @return VBox status code.
    12841281 * @param  u32ClientID                  The client's ID.
     
    13021299    if (itClientState != mClientStateMap.end())
    13031300    {
    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;
    13211303    }
    13221304    else
    1323         rc = VERR_NOT_FOUND; /* Ditto. */
     1305        rc = VERR_NOT_FOUND;
    13241306
    13251307    LogFlowFunc(("[Client %RU32] Skipped current message, rc=%Rrc\n", u32ClientID, rc));
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette