Changeset 47620 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Aug 8, 2013 8:09:42 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp
r47551 r47620 1080 1080 if (RT_SUCCESS(rc)) 1081 1081 { 1082 /* Set session filter. */ 1082 /* Set session filter. This prevents the guest control 1083 * host service to send messages which belong to another 1084 * session we don't want to handle. */ 1083 1085 uint32_t uFilterAdd = 1084 1086 VBOX_GUESTCTRL_CONTEXTID_MAKE_SESSION(pSession->StartupInfo.uSessionID); 1085 1086 rc = VbglR3GuestCtrlMsgSetFilter(uClientID, uFilterAdd, 0 /* Filter remove */); 1087 VBoxServiceVerbose(3, "Setting message filterAdd=%RU32 returned %Rrc\n", 1087 uFilterAdd |= 0x7FFFFFF; /* We only want to filter for session IDs. */ 1088 1089 rc = VbglR3GuestCtrlMsgFilterSet(uClientID, uFilterAdd, 0 /* Filter remove */); 1090 VBoxServiceVerbose(3, "Setting message filterAdd=0x%x returned %Rrc\n", 1088 1091 uFilterAdd, rc); 1089 1092
Note:
See TracChangeset
for help on using the changeset viewer.