diff options
author | Jiaxin Wu <jiaxin.wu@intel.com> | 2015-08-18 03:12:16 +0000 |
---|---|---|
committer | jiaxinwu <jiaxinwu@Edk2> | 2015-08-18 03:12:16 +0000 |
commit | 2c3200072f94313600c6fa9af57715220b51a5fb (patch) | |
tree | 193a4af5d4aadc25e1b3bb1c1b359a8b39f7baeb /MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Impl.h | |
parent | 36673054200c24a38bedea10e19765830bd2ad2c (diff) | |
download | edk2-platforms-2c3200072f94313600c6fa9af57715220b51a5fb.tar.xz |
MdeModulePkg: IP4 should re-initiate a DHCP if it detects network reconnection
v2:
* Update the MediaPresent detect declaring.
IP4 driver should re-initiate a DHCP if it detects that there is a network.
To fix this issue, we can implement the DHCP re-initiate policy while the media
change detected. The Ip4 driver should set a timer to signal the Ip4 to run the
DHCP configuration again(D.O.R.A). IP4 driver should free old IP address related
resource, then initiate a DHCP process to acquire new IP.
Cc: Ye Ting <ting.ye@intel.com>
Cc: Zhang Lubo <lubo.zhang@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jiaxin Wu <jiaxin.wu@intel.com>
Reviewed-by: Ye Ting <ting.ye@intel.com>
Reviewed-by: Lubo Zhang <lubo.zhang@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18232 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Impl.h')
-rw-r--r-- | MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Impl.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Impl.h b/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Impl.h index 84dfa80f1c..4bb0089413 100644 --- a/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Impl.h +++ b/MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Impl.h @@ -203,6 +203,13 @@ struct _IP4_SERVICE { EFI_EVENT Timer;
+ EFI_EVENT ReconfigEvent;
+
+ //
+ // Underlying media present status.
+ //
+ BOOLEAN MediaPresent;
+
//
// IPv4 Configuration II Protocol instance
//
|