NetworkPkg/DnsDxe: Fix various typos
Fix various typos in comments and documentation. 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-35-philmd@redhat.com>
This commit is contained in:
committed by
mergify[bot]
parent
0d622d9c3d
commit
81a46615f5
@@ -14,7 +14,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
@param[in] TokenMap All DNSv4 Token entrys.
|
||||
@param[in] TokenEntry TokenEntry need to be removed.
|
||||
|
||||
@retval EFI_SUCCESS Remove TokenEntry from TokenMap sucessfully.
|
||||
@retval EFI_SUCCESS Remove TokenEntry from TokenMap successfully.
|
||||
@retval EFI_NOT_FOUND TokenEntry is not found in TokenMap.
|
||||
|
||||
**/
|
||||
@@ -49,7 +49,7 @@ Dns4RemoveTokenEntry (
|
||||
@param[in] TokenMap All DNSv6 Token entrys.
|
||||
@param[in] TokenEntry TokenEntry need to be removed.
|
||||
|
||||
@retval EFI_SUCCESS Remove TokenEntry from TokenMap sucessfully.
|
||||
@retval EFI_SUCCESS Remove TokenEntry from TokenMap successfully.
|
||||
@retval EFI_NOT_FOUND TokenEntry is not found in TokenMap.
|
||||
|
||||
**/
|
||||
@@ -79,7 +79,7 @@ Dns6RemoveTokenEntry (
|
||||
}
|
||||
|
||||
/**
|
||||
This function cancle the token specified by Arg in the Map.
|
||||
This function cancel the token specified by Arg in the Map.
|
||||
|
||||
@param[in] Map Pointer to the NET_MAP.
|
||||
@param[in] Item Pointer to the NET_MAP_ITEM.
|
||||
@@ -139,7 +139,7 @@ Dns4CancelTokens (
|
||||
}
|
||||
|
||||
/**
|
||||
This function cancle the token specified by Arg in the Map.
|
||||
This function cancel the token specified by Arg in the Map.
|
||||
|
||||
@param[in] Map Pointer to the NET_MAP.
|
||||
@param[in] Item Pointer to the NET_MAP_ITEM.
|
||||
@@ -205,7 +205,7 @@ Dns6CancelTokens (
|
||||
@param[in] Token Pointer to the token to be get.
|
||||
@param[out] TokenEntry Pointer to TokenEntry corresponding Token.
|
||||
|
||||
@retval EFI_SUCCESS Get the TokenEntry from the TokensMap sucessfully.
|
||||
@retval EFI_SUCCESS Get the TokenEntry from the TokensMap successfully.
|
||||
@retval EFI_NOT_FOUND TokenEntry is not found in TokenMap.
|
||||
|
||||
**/
|
||||
@@ -241,7 +241,7 @@ GetDns4TokenEntry (
|
||||
@param[in] Token Pointer to the token to be get.
|
||||
@param[out] TokenEntry Pointer to TokenEntry corresponding Token.
|
||||
|
||||
@retval EFI_SUCCESS Get the TokenEntry from the TokensMap sucessfully.
|
||||
@retval EFI_SUCCESS Get the TokenEntry from the TokensMap successfully.
|
||||
@retval EFI_NOT_FOUND TokenEntry is not found in TokenMap.
|
||||
|
||||
**/
|
||||
@@ -530,7 +530,7 @@ DnsDummyExtFree (
|
||||
@param UdpCfgData The UDP configure data to reconfigure the UDP_IO
|
||||
|
||||
@retval TRUE The default address is retrieved and UDP is reconfigured.
|
||||
@retval FALSE Some error occured.
|
||||
@retval FALSE Some error occurred.
|
||||
|
||||
**/
|
||||
BOOLEAN
|
||||
@@ -582,7 +582,7 @@ Dns4GetMapping (
|
||||
@param UdpCfgData The UDP configure data to reconfigure the UDP_IO
|
||||
|
||||
@retval TRUE Configure the Udp6 instance successfully.
|
||||
@retval FALSE Some error occured.
|
||||
@retval FALSE Some error occurred.
|
||||
|
||||
**/
|
||||
BOOLEAN
|
||||
@@ -2101,7 +2101,7 @@ DnsOnTimerRetransmit (
|
||||
}
|
||||
|
||||
//
|
||||
// Retransmit the packet if haven't reach the maxmium retry count,
|
||||
// Retransmit the packet if haven't reach the maximum retry count,
|
||||
// otherwise exit the transfer.
|
||||
//
|
||||
if (++Dns4TokenEntry->RetryCounting <= Dns4TokenEntry->Token->RetryCount) {
|
||||
@@ -2145,7 +2145,7 @@ DnsOnTimerRetransmit (
|
||||
}
|
||||
|
||||
//
|
||||
// Retransmit the packet if haven't reach the maxmium retry count,
|
||||
// Retransmit the packet if haven't reach the maximum retry count,
|
||||
// otherwise exit the transfer.
|
||||
//
|
||||
if (++Dns6TokenEntry->RetryCounting <= Dns6TokenEntry->Token->RetryCount) {
|
||||
|
Reference in New Issue
Block a user