Changeset 91485 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Sep 30, 2021 7:57:39 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevE1000.cpp
r90447 r91485 7981 7981 N_("Configuration error: Failed to get the value of 'TidEnabled'")); 7982 7982 7983 rc = pHlp->pfnCFGMQueryU32Def(pCfg, "LinkUpDelay", (uint32_t*)&pThis->cMsLinkUpDelay, 3000); /* ms */ 7983 /* 7984 * Increased the link up delay from 3 to 5 seconds to make sure a guest notices the link loss 7985 * and updates its network configuration when the link is restored. See @bugref{10114}. 7986 */ 7987 rc = pHlp->pfnCFGMQueryU32Def(pCfg, "LinkUpDelay", (uint32_t*)&pThis->cMsLinkUpDelay, 5000); /* ms */ 7984 7988 if (RT_FAILURE(rc)) 7985 7989 return PDMDEV_SET_ERROR(pDevIns, rc,
Note:
See TracChangeset
for help on using the changeset viewer.