diff options
author | Antoine Coeur <coeur@gmx.fr> | 2020-02-07 02:08:01 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-02-10 22:30:07 +0000 |
commit | 81c6f1762e9c70efbbaf24358ece67fec74e2083 (patch) | |
tree | 7fc19fdfa4c16ae85c05dee29ce0ea0975f939e4 /NetworkPkg/TcpDxe/TcpOption.h | |
parent | 4cefb5e9032f089f4d572684cd7e230f5f5ab414 (diff) | |
download | edk2-81c6f1762e9c70efbbaf24358ece67fec74e2083.zip edk2-81c6f1762e9c70efbbaf24358ece67fec74e2083.tar.gz edk2-81c6f1762e9c70efbbaf24358ece67fec74e2083.tar.bz2 |
NetworkPkg/TcpDxe/Tcp: Fix various typos
Fix various typos in documentation, comments and debug strings.
Cc: Jiaxin Wu <jiaxin.wu@intel.com>
Cc: Siyuan Fu <siyuan.fu@intel.com>
Cc: Maciej Rabeda <maciej.rabeda@intel.com>
Signed-off-by: Antoine Coeur <coeur@gmx.fr>
Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
Reviewed-by: Maciej Rabeda <maciej.rabeda@intel.com>
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
Message-Id: <20200207010831.9046-49-philmd@redhat.com>
Diffstat (limited to 'NetworkPkg/TcpDxe/TcpOption.h')
-rw-r--r-- | NetworkPkg/TcpDxe/TcpOption.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/NetworkPkg/TcpDxe/TcpOption.h b/NetworkPkg/TcpDxe/TcpOption.h index b28f4e6..20a476e 100644 --- a/NetworkPkg/TcpDxe/TcpOption.h +++ b/NetworkPkg/TcpDxe/TcpOption.h @@ -40,12 +40,12 @@ #define TCP_OPTION_MSS_FAST ((TCP_OPTION_MSS << 24) | (TCP_OPTION_MSS_LEN << 16))
//
-// Other misc definations
+// Other misc definitions
//
#define TCP_OPTION_RCVD_MSS 0x01
#define TCP_OPTION_RCVD_WS 0x02
#define TCP_OPTION_RCVD_TS 0x04
-#define TCP_OPTION_MAX_WS 14 ///< Maxium window scale value
+#define TCP_OPTION_MAX_WS 14 ///< Maximum window scale value
#define TCP_OPTION_MAX_WIN 0xffff ///< Max window size in TCP header
///
@@ -111,7 +111,7 @@ TcpBuildOption ( successfully pasrsed options.
@retval 0 The options successfully pasrsed.
- @retval -1 Ilegal option was found.
+ @retval -1 Illegal option was found.
**/
INTN
|