* [edk2-devel] [PATCH V3 0/2] Change the comments RFC1323 to RFC7323
@ 2023-12-26 9:01 Ren, Suqiang
2023-12-26 9:01 ` [edk2-devel] [PATCH V3 1/2] MdePkg: RFC1323 definition changed " Ren, Suqiang
2023-12-26 9:01 ` [edk2-devel] [PATCH V3 2/2] NetworkPkg: " Ren, Suqiang
0 siblings, 2 replies; 4+ messages in thread
From: Ren, Suqiang @ 2023-12-26 9:01 UTC (permalink / raw)
To: devel
Cc: Michael D Kinney, Liming Gao, Zhiguang Liu, Saloni Kasbekar,
Zachary Clark-williams
REF: UEFI spec 2.10 Table 28.2.5
Change the description of RFC1323 to align with UEFI spec 2.10.
v3:
Add the NetworkPkg change for RFC1323.
v2:
Update the commit message.
Signed-off-by: Suqiang Ren <suqiangx.ren@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
Cc: Saloni Kasbekar <saloni.kasbekar@intel.com>
Cc: Zachary Clark-williams <zachary.clark-williams@intel.com>
Suqiang Ren (2):
MdePkg: RFC1323 definition changed to RFC7323
NetworkPkg: RFC1323 definition changed to RFC7323
MdePkg/Include/Protocol/Tcp6.h | 4 ++--
NetworkPkg/TcpDxe/TcpInput.c | 2 +-
NetworkPkg/TcpDxe/TcpProto.h | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
--
2.26.2.windows.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#112909): https://edk2.groups.io/g/devel/message/112909
Mute This Topic: https://groups.io/mt/103367728/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
^ permalink raw reply [flat|nested] 4+ messages in thread
* [edk2-devel] [PATCH V3 1/2] MdePkg: RFC1323 definition changed to RFC7323
2023-12-26 9:01 [edk2-devel] [PATCH V3 0/2] Change the comments RFC1323 to RFC7323 Ren, Suqiang
@ 2023-12-26 9:01 ` Ren, Suqiang
2023-12-26 9:01 ` [edk2-devel] [PATCH V3 2/2] NetworkPkg: " Ren, Suqiang
1 sibling, 0 replies; 4+ messages in thread
From: Ren, Suqiang @ 2023-12-26 9:01 UTC (permalink / raw)
To: devel; +Cc: Michael D Kinney, Liming Gao, Zhiguang Liu
Change the description of RFC1323 to RFC7323
to align with UEFI spec 2.10.
REF: UEFI spec 2.10 Table 28.2.5
Signed-off-by: Suqiang Ren <suqiangx.ren@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
---
MdePkg/Include/Protocol/Tcp6.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/MdePkg/Include/Protocol/Tcp6.h b/MdePkg/Include/Protocol/Tcp6.h
index a8787dd3af1a..d16bc06eb29b 100644
--- a/MdePkg/Include/Protocol/Tcp6.h
+++ b/MdePkg/Include/Protocol/Tcp6.h
@@ -192,12 +192,12 @@ typedef struct {
BOOLEAN EnableNagle;
///
/// Set it to TRUE to enable TCP timestamps option as defined in
- /// RFC1323. Set to FALSE to disable it.
+ /// RFC7323. Set to FALSE to disable it.
///
BOOLEAN EnableTimeStamp;
///
/// Set it to TRUE to enable TCP window scale option as defined in
- /// RFC1323. Set it to FALSE to disable it.
+ /// RFC7323. Set it to FALSE to disable it.
///
BOOLEAN EnableWindowScaling;
///
--
2.26.2.windows.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#112910): https://edk2.groups.io/g/devel/message/112910
Mute This Topic: https://groups.io/mt/103367729/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [edk2-devel] [PATCH V3 2/2] NetworkPkg: RFC1323 definition changed to RFC7323
2023-12-26 9:01 [edk2-devel] [PATCH V3 0/2] Change the comments RFC1323 to RFC7323 Ren, Suqiang
2023-12-26 9:01 ` [edk2-devel] [PATCH V3 1/2] MdePkg: RFC1323 definition changed " Ren, Suqiang
@ 2023-12-26 9:01 ` Ren, Suqiang
2023-12-27 17:55 ` Saloni Kasbekar
1 sibling, 1 reply; 4+ messages in thread
From: Ren, Suqiang @ 2023-12-26 9:01 UTC (permalink / raw)
To: devel; +Cc: Saloni Kasbekar, Zachary Clark-williams
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 Table 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>
---
NetworkPkg/TcpDxe/TcpInput.c | 2 +-
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 7b329be64dfe..97633a3908be 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 81f6a875351f..94234f969681 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.
--
2.26.2.windows.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#112911): https://edk2.groups.io/g/devel/message/112911
Mute This Topic: https://groups.io/mt/103367730/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [edk2-devel] [PATCH V3 2/2] NetworkPkg: RFC1323 definition changed to RFC7323
2023-12-26 9:01 ` [edk2-devel] [PATCH V3 2/2] NetworkPkg: " Ren, Suqiang
@ 2023-12-27 17:55 ` Saloni Kasbekar
0 siblings, 0 replies; 4+ messages in thread
From: Saloni Kasbekar @ 2023-12-27 17:55 UTC (permalink / raw)
To: Ren, SuqiangX, devel@edk2.groups.io; +Cc: Clark-williams, Zachary
Reviewed-by: Saloni Kasbekar <saloni.kasbekar@intel.com>
-----Original Message-----
From: Ren, SuqiangX <suqiangx.ren@intel.com>
Sent: Tuesday, December 26, 2023 1:02 AM
To: devel@edk2.groups.io
Cc: Kasbekar, Saloni <saloni.kasbekar@intel.com>; Clark-williams, Zachary <zachary.clark-williams@intel.com>
Subject: [PATCH V3 2/2] 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 Table 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>
---
NetworkPkg/TcpDxe/TcpInput.c | 2 +-
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 7b329be64dfe..97633a3908be 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 81f6a875351f..94234f969681 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.
--
2.26.2.windows.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#112933): https://edk2.groups.io/g/devel/message/112933
Mute This Topic: https://groups.io/mt/103367730/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-12-27 17:55 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-26 9:01 [edk2-devel] [PATCH V3 0/2] Change the comments RFC1323 to RFC7323 Ren, Suqiang
2023-12-26 9:01 ` [edk2-devel] [PATCH V3 1/2] MdePkg: RFC1323 definition changed " Ren, Suqiang
2023-12-26 9:01 ` [edk2-devel] [PATCH V3 2/2] NetworkPkg: " Ren, Suqiang
2023-12-27 17:55 ` Saloni Kasbekar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox