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>
This commit is contained in:
Suqiang Ren 2023-12-26 10:33:50 +08:00 committed by mergify[bot]
parent 638e4ca238
commit 682a5ed1a2
2 changed files with 2 additions and 2 deletions

View File

@ -1177,7 +1177,7 @@ TcpInput (
// //
if (TCP_FLG_ON (Option.Flag, TCP_OPTION_RCVD_TS)) { 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" // RcvWl2 equals to the variable "LastAckSent"
// defined there. // defined there.
// //

View File

@ -277,7 +277,7 @@ struct _TCP_CONTROL_BLOCK {
BOOLEAN ProbeTimerOn; ///< If TRUE, the probe time is on. BOOLEAN ProbeTimerOn; ///< If TRUE, the probe time is on.
// //
// RFC1323 defined variables, about window scale, // RFC7323 defined variables, about window scale,
// timestamp and PAWS // timestamp and PAWS
// //
UINT8 SndWndScale; ///< Wndscale received from the peer. UINT8 SndWndScale; ///< Wndscale received from the peer.