Changeset 47621 in vbox for trunk/src/VBox/HostServices/GuestControl/service.cpp
- Timestamp:
- Aug 8, 2013 8:34:59 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestControl/service.cpp
r47620 r47621 563 563 return false; 564 564 565 #ifdef DEBUG566 LogFlowFunc(("[Client %RU32] mFlags=0x%x, mContextID=%RU32 (session %RU32), mContextFilter=0x%x (result=%x -> %RTbool)\n",567 mID, mFlags, pHostCmd->mContextID,568 VBOX_GUESTCTRL_CONTEXTID_GET_SESSION(pHostCmd->mContextID),569 mContextFilter,570 pHostCmd->mContextID & pHostCmd->mContextID,571 (pHostCmd->mContextID & mContextFilter) == pHostCmd->mContextID));572 #endif573 565 /* 574 566 * If a sesseion filter is set, only obey those commands we're interested in … … 584 576 else /* Client is interested in all commands. */ 585 577 fWant = true; 578 579 LogFlowFunc(("[Client %RU32] mFlags=0x%x, mContextID=%RU32 (session %RU32), mContextFilter=0x%x, fWant=%RTbool\n", 580 mID, mFlags, pHostCmd->mContextID, 581 VBOX_GUESTCTRL_CONTEXTID_GET_SESSION(pHostCmd->mContextID), 582 mContextFilter, fWant)); 586 583 587 584 return fWant; … … 1221 1218 return VERR_INVALID_PARAMETER; 1222 1219 1223 LogFlowFunc((" Client ID=%RU32 skippingmessage ...\n", u32ClientID));1220 LogFlowFunc(("[Client %RU32] Skipping current message ...\n", u32ClientID)); 1224 1221 1225 1222 itClientState->second.DequeueCurrent();
Note:
See TracChangeset
for help on using the changeset viewer.