Changeset 50951 in vbox for trunk/src/VBox
- Timestamp:
- Apr 2, 2014 1:55:05 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93099
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvNAT.cpp
r50950 r50951 221 221 *******************************************************************************/ 222 222 static void drvNATNotifyNATThread(PDRVNAT pThis, const char *pszWho); 223 DECLINLINE(void) drvNATHostNetworkConfigurationChangeEventStrategySelector( 224 PDRVNAT pThis, 225 bool fFlapLink); 223 DECLINLINE(void) drvNATUpdateDNS(PDRVNAT pThis, bool fFlapLink); 226 224 static DECLCALLBACK(int) drvNATReinitializeHostNameResolving(PDRVNAT pThis); 227 225 … … 979 977 CFArrayRef hArrAddresses = (CFArrayRef)CFDictionaryGetValue(hDnsDict, kSCPropNetDNSServerAddresses); 980 978 if (hArrAddresses) 981 drvNAT HostNetworkConfigurationChangeEventStrategySelector(pThis, /* fFlapLink */ true);979 drvNATUpdateDNS(pThis, /* fFlapLink */ true); 982 980 983 981 CFRelease(hDnsDict); … … 1060 1058 fFlapLink = true; 1061 1059 #endif 1062 drvNAT HostNetworkConfigurationChangeEventStrategySelector(pThis, fFlapLink);1060 drvNATUpdateDNS(pThis, fFlapLink); 1063 1061 return; 1064 1062 default: /* Ignore every other resume reason. */ … … 1089 1087 * _won't_ be changed, the only thing will change is drop of fFlapLink parameter. 1090 1088 */ 1091 DECLINLINE(void) drvNATHostNetworkConfigurationChangeEventStrategySelector(PDRVNAT pThis, 1092 bool fFlapLink) 1089 DECLINLINE(void) drvNATUpdateDNS(PDRVNAT pThis, bool fFlapLink) 1093 1090 { 1094 1091 int strategy = slirp_host_network_configuration_change_strategy_selector(pThis->pNATState); … … 1114 1111 (PFNRT)drvNATReinitializeHostNameResolving, 1, pThis); 1115 1112 if (RT_SUCCESS(rc)) 1116 drvNATNotifyNATThread(pThis, 1117 "drvNATHostNetworkConfigurationChangeEventStrategySelector"); 1113 drvNATNotifyNATThread(pThis, "drvNATUpdateDNS"); 1118 1114 1119 1115 return;
Note:
See TracChangeset
for help on using the changeset viewer.