Changeset 15629 in vbox
- Timestamp:
- Dec 17, 2008 1:34:36 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/solaris/VBoxNetFlt-solaris.c
r15527 r15629 1858 1858 rc = strioctl(pIp4VNode, fAttach ? _I_INSERT : _I_REMOVE, (intptr_t)&StrMod, 0, K_TO_K, 1859 1859 kcred, &ret); 1860 1861 g_VBoxNetFltSolarisInstance = NULL; 1862 g_VBoxNetFltSolarisStreamType = kUndefined; 1863 1860 1864 if (!rc) 1861 1865 { … … 1866 1870 * Inject/Eject from the host ARP stack. 1867 1871 */ 1872 g_VBoxNetFltSolarisInstance = pThis; 1868 1873 g_VBoxNetFltSolarisStreamType = kArpStream; 1874 1869 1875 rc = strioctl(pArpVNode, fAttach ? _I_INSERT : _I_REMOVE, (intptr_t)&ArpStrMod, 0, K_TO_K, 1870 1876 kcred, &ret); 1877 1878 g_VBoxNetFltSolarisInstance = NULL; 1879 g_VBoxNetFltSolarisStreamType = kUndefined; 1880 1871 1881 if (!rc) 1872 1882 { 1873 g_VBoxNetFltSolarisInstance = NULL;1874 g_VBoxNetFltSolarisStreamType = kUndefined;1875 1876 1883 /* 1877 1884 * Our job's not yet over; we need to relink the upper and lower streams
Note:
See TracChangeset
for help on using the changeset viewer.