1.Fix a bug in Dhcp4Dxe driver to correct the ‘secs’ field in DHCP message.

Signed-off-by: sfu5
Reviewed-by: tye
Reviewed-by: xdu2

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12742 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
sfu5
2011-11-21 03:40:24 +00:00
parent 0d11446d51
commit 842d83d65e
4 changed files with 73 additions and 4 deletions

View File

@ -1,7 +1,7 @@
/** @file
This file implement the EFI_DHCP4_PROTOCOL interface.
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@ -932,6 +932,12 @@ EfiDhcp4RenewRebind (
DhcpSetState (DhcpSb, Dhcp4Rebinding, FALSE);
}
//
// Clear initial time to make sure that elapsed-time
// is set to 0 for first REQUEST in renewal process.
//
Instance->ElaspedTime = 0;
Status = DhcpSendMessage (
DhcpSb,
DhcpSb->Selected,
@ -1723,3 +1729,19 @@ EfiDhcp4Parse (
return EFI_SUCCESS;
}
/**
Set the elapsed time based on the given instance and the pointer to the
elapsed time option.
@param[in] Elapsed The pointer to the position to append.
@param[in] Instance The pointer to the Dhcp4 instance.
**/
VOID
SetElapsedTime (
IN UINT16 *Elapsed,
IN DHCP_PROTOCOL *Instance
)
{
WriteUnaligned16 (Elapsed, HTONS(Instance->ElaspedTime));
}