diff options
author | Suqiang Ren <suqiangx.ren@intel.com> | 2023-12-26 10:33:50 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-01-16 01:17:34 +0000 |
commit | 682a5ed1a229443a259da2df9f961a0448071e3e (patch) | |
tree | 787a6cabed0cf199f69815a9b71a75166704982f | |
parent | 638e4ca2388d1c3aa6bb1cb9fa95bb2a37bf7df2 (diff) | |
download | edk2-682a5ed1a229443a259da2df9f961a0448071e3e.tar.gz edk2-682a5ed1a229443a259da2df9f961a0448071e3e.tar.bz2 edk2-682a5ed1a229443a259da2df9f961a0448071e3e.zip |
NetworkPkg: RFC1323 definition changed to RFC7323
According to UEFI spec 2.10, the definition of RFC1323
has changed to RFC7323 on EFI_TCP6_OPTION. So align this
change on NetworkPkg.
REF: UEFI spec 2.10 section 28.2.5
Signed-off-by: Suqiang Ren <suqiangx.ren@intel.com>
Cc: Saloni Kasbekar <saloni.kasbekar@intel.com>
Cc: Zachary Clark-williams <zachary.clark-williams@intel.com>
Reviewed-by: Saloni Kasbekar <saloni.kasbekar@intel.com>
-rw-r--r-- | NetworkPkg/TcpDxe/TcpInput.c | 2 | ||||
-rw-r--r-- | NetworkPkg/TcpDxe/TcpProto.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/NetworkPkg/TcpDxe/TcpInput.c b/NetworkPkg/TcpDxe/TcpInput.c index 7b329be64d..97633a3908 100644 --- a/NetworkPkg/TcpDxe/TcpInput.c +++ b/NetworkPkg/TcpDxe/TcpInput.c @@ -1177,7 +1177,7 @@ TcpInput ( //
if (TCP_FLG_ON (Option.Flag, TCP_OPTION_RCVD_TS)) {
//
- // update TsRecent as specified in page 16 RFC1323.
+ // update TsRecent as specified in page 17 RFC7323.
// RcvWl2 equals to the variable "LastAckSent"
// defined there.
//
diff --git a/NetworkPkg/TcpDxe/TcpProto.h b/NetworkPkg/TcpDxe/TcpProto.h index 81f6a87535..94234f9696 100644 --- a/NetworkPkg/TcpDxe/TcpProto.h +++ b/NetworkPkg/TcpDxe/TcpProto.h @@ -277,7 +277,7 @@ struct _TCP_CONTROL_BLOCK { BOOLEAN ProbeTimerOn; ///< If TRUE, the probe time is on.
//
- // RFC1323 defined variables, about window scale,
+ // RFC7323 defined variables, about window scale,
// timestamp and PAWS
//
UINT8 SndWndScale; ///< Wndscale received from the peer.
|