summaryrefslogtreecommitdiffstats
path: root/NetworkPkg/TcpDxe/TcpProto.h
diff options
context:
space:
mode:
authortye1 <tye1@6f19259b-4bc3-4df7-8a09-765794883524>2012-08-10 06:32:15 +0000
committertye1 <tye1@6f19259b-4bc3-4df7-8a09-765794883524>2012-08-10 06:32:15 +0000
commit9119637cb399963c4be9cfc8bf05a14f57e08813 (patch)
treefd8924d473784ddc15beddf137af6377bfb5bec1 /NetworkPkg/TcpDxe/TcpProto.h
parentf4184cbd9bdaae327bdc3c51f66324a5b985ddeb (diff)
downloadedk2-9119637cb399963c4be9cfc8bf05a14f57e08813.tar.gz
edk2-9119637cb399963c4be9cfc8bf05a14f57e08813.tar.bz2
edk2-9119637cb399963c4be9cfc8bf05a14f57e08813.zip
Fix issue that TCP server will not response to SYN packet from TCP client in TCP6 module.
Signed-off-by: Ye Ting <ting.ye@intel.com> Reviewed-by: Ouyang Qian <qian.ouyang@intel.com> Reviewed-by: Fu Siyuan <siyuan.fu@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13606 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'NetworkPkg/TcpDxe/TcpProto.h')
-rw-r--r--NetworkPkg/TcpDxe/TcpProto.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/NetworkPkg/TcpDxe/TcpProto.h b/NetworkPkg/TcpDxe/TcpProto.h
index 88dfbb9d5c..ee35134833 100644
--- a/NetworkPkg/TcpDxe/TcpProto.h
+++ b/NetworkPkg/TcpDxe/TcpProto.h
@@ -1,7 +1,7 @@
/** @file
TCP protocol header file.
- Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2009 - 2012, 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
@@ -335,6 +335,8 @@ struct _TCP_CONTROL_BLOCK {
UINT8 Ttl;
EFI_IPv4_ADDRESS SubnetMask;
+
+ BOOLEAN RemoteIpZero; ///< RemoteEnd.Ip is ZERO when configured.
IP_IO_IP_INFO *IpInfo; ///< Pointer reference to Ip used to send pkt
UINT32 Tick; ///< 1 tick = 200ms
};