1. Fixed issue when calculating timeout value in timeout function in MNP module.
2. Added and refine some comments. 3. Enable UefiPxeBc Module to accept all broadcast packets for UDP Read&Write interface. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6781 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -451,13 +451,16 @@ Udp4CheckTimeout (
|
||||
//
|
||||
Wrap = NET_LIST_USER_STRUCT (WrapEntry, UDP4_RXDATA_WRAP, Link);
|
||||
|
||||
if (Wrap->TimeoutTick <= UDP4_TIMEOUT_INTERVAL / 10) {
|
||||
//
|
||||
// TimeoutTick unit is ms, MNP_TIMEOUT_CHECK_INTERVAL unit is 100ns.
|
||||
//
|
||||
if (Wrap->TimeoutTick <= (UDP4_TIMEOUT_INTERVAL / 10)) {
|
||||
//
|
||||
// Remove this RxData if it timeouts.
|
||||
//
|
||||
Udp4RecycleRxDataWrap (NULL, (VOID *) Wrap);
|
||||
} else {
|
||||
Wrap->TimeoutTick -= UDP4_TIMEOUT_INTERVAL / 10;
|
||||
Wrap->TimeoutTick -= (UDP4_TIMEOUT_INTERVAL / 10);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user