Changeset 80735 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt/linux
- Timestamp:
- Sep 11, 2019 2:35:34 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133279
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
r79643 r80735 2124 2124 if (in_dev != NULL) 2125 2125 { 2126 for_ifa(in_dev) { 2126 struct in_ifaddr *ifa; 2127 2128 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) { 2127 2129 if (VBOX_IPV4_IS_LOOPBACK(ifa->ifa_address)) 2128 2130 return NOTIFY_OK; … … 2138 2140 pThis->pSwitchPort->pfnNotifyHostAddress(pThis->pSwitchPort, 2139 2141 /* :fAdded */ true, kIntNetAddrType_IPv4, &ifa->ifa_address); 2140 } endfor_ifa(in_dev);2142 } 2141 2143 } 2142 2144
Note:
See TracChangeset
for help on using the changeset viewer.