diff options
author | Suqiang Ren <suqiangx.ren@intel.com> | 2023-12-26 10:28:38 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-01-16 01:17:34 +0000 |
commit | 638e4ca2388d1c3aa6bb1cb9fa95bb2a37bf7df2 (patch) | |
tree | 2a263152b9e276b3e7b6d879c208d121a94e6005 | |
parent | 7c2757c298b40f5d7bad8da3faff7bb9c47ce2ae (diff) | |
download | edk2-638e4ca2388d1c3aa6bb1cb9fa95bb2a37bf7df2.tar.gz edk2-638e4ca2388d1c3aa6bb1cb9fa95bb2a37bf7df2.tar.bz2 edk2-638e4ca2388d1c3aa6bb1cb9fa95bb2a37bf7df2.zip |
MdePkg: RFC1323 definition changed to RFC7323
Change the description of RFC1323 to RFC7323
to align with UEFI spec 2.10.
REF: UEFI spec 2.10 section 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>
-rw-r--r-- | MdePkg/Include/Protocol/Tcp6.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Include/Protocol/Tcp6.h b/MdePkg/Include/Protocol/Tcp6.h index a8787dd3af..d16bc06eb2 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;
///
|