Changeset 85309 in vbox for trunk/src/VBox/Main/src-server/NATEngineImpl.cpp
- Timestamp:
- Jul 13, 2020 12:56:56 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139287
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/NATEngineImpl.cpp
r82968 r85309 326 326 327 327 alock.release(); 328 mParent->i_onNATRedirectRuleChange(ulSlot, FALSE, Bstr(name).raw(), aProto, Bstr(r.strHostIP).raw(), 329 r.u16HostPort, Bstr(r.strGuestIP).raw(), r.u16GuestPort); 328 mParent->i_onNATRedirectRuleChanged(ulSlot, FALSE, name, aProto, r.strHostIP, r.u16HostPort, r.strGuestIP, r.u16GuestPort); 330 329 return S_OK; 331 330 } … … 350 349 mParent->i_setModified(Machine::IsModified_NetworkAdapters); 351 350 alock.release(); 352 mParent->i_onNATRedirectRuleChange(ulSlot, TRUE, Bstr(aName).raw(), r.proto, Bstr(r.strHostIP).raw(), 353 r.u16HostPort, Bstr(r.strGuestIP).raw(), r.u16GuestPort); 351 mParent->i_onNATRedirectRuleChanged(ulSlot, TRUE, aName, r.proto, r.strHostIP, r.u16HostPort, r.strGuestIP, r.u16GuestPort); 354 352 return S_OK; 355 353 }
Note:
See TracChangeset
for help on using the changeset viewer.