NetworkPkg: Clean up source files
1. Do not use tab characters 2. No trailing white space in one line 3. All files must end with CRLF Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/** @file
|
||||
DnsDxe support functions implementation.
|
||||
|
||||
Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@@ -95,22 +95,22 @@ typedef union _DNS_FLAGS DNS_FLAGS;
|
||||
|
||||
typedef struct {
|
||||
LIST_ENTRY AllCacheLink;
|
||||
EFI_DNS4_CACHE_ENTRY DnsCache;
|
||||
EFI_DNS4_CACHE_ENTRY DnsCache;
|
||||
} DNS4_CACHE;
|
||||
|
||||
typedef struct {
|
||||
LIST_ENTRY AllCacheLink;
|
||||
EFI_DNS6_CACHE_ENTRY DnsCache;
|
||||
EFI_DNS6_CACHE_ENTRY DnsCache;
|
||||
} DNS6_CACHE;
|
||||
|
||||
typedef struct {
|
||||
LIST_ENTRY AllServerLink;
|
||||
EFI_IPv4_ADDRESS Dns4ServerIp;
|
||||
EFI_IPv4_ADDRESS Dns4ServerIp;
|
||||
} DNS4_SERVER_IP;
|
||||
|
||||
typedef struct {
|
||||
LIST_ENTRY AllServerLink;
|
||||
EFI_IPv6_ADDRESS Dns6ServerIp;
|
||||
EFI_IPv6_ADDRESS Dns6ServerIp;
|
||||
} DNS6_SERVER_IP;
|
||||
|
||||
typedef struct {
|
||||
@@ -206,7 +206,7 @@ Dns4RemoveTokenEntry (
|
||||
|
||||
@retval EFI_SUCCESS Remove TokenEntry from TokenMap sucessfully.
|
||||
@retval EFI_NOT_FOUND TokenEntry is not found in TokenMap.
|
||||
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
Dns6RemoveTokenEntry (
|
||||
@@ -277,7 +277,7 @@ EFI_STATUS
|
||||
EFIAPI
|
||||
GetDns4TokenEntry (
|
||||
IN NET_MAP *TokensMap,
|
||||
IN EFI_DNS4_COMPLETION_TOKEN *Token,
|
||||
IN EFI_DNS4_COMPLETION_TOKEN *Token,
|
||||
OUT DNS4_TOKEN_ENTRY **TokenEntry
|
||||
);
|
||||
|
||||
@@ -296,7 +296,7 @@ EFI_STATUS
|
||||
EFIAPI
|
||||
GetDns6TokenEntry (
|
||||
IN NET_MAP *TokensMap,
|
||||
IN EFI_DNS6_COMPLETION_TOKEN *Token,
|
||||
IN EFI_DNS6_COMPLETION_TOKEN *Token,
|
||||
OUT DNS6_TOKEN_ENTRY **TokenEntry
|
||||
);
|
||||
|
||||
@@ -406,9 +406,9 @@ DnsDummyExtFree (
|
||||
|
||||
/**
|
||||
Poll the UDP to get the IP4 default address, which may be retrieved
|
||||
by DHCP.
|
||||
|
||||
The default time out value is 5 seconds. If IP has retrieved the default address,
|
||||
by DHCP.
|
||||
|
||||
The default time out value is 5 seconds. If IP has retrieved the default address,
|
||||
the UDP is reconfigured.
|
||||
|
||||
@param Instance The DNS instance
|
||||
@@ -447,10 +447,10 @@ Dns6GetMapping (
|
||||
|
||||
/**
|
||||
Configure the UDP.
|
||||
|
||||
|
||||
@param Instance The DNS session
|
||||
@param UdpIo The UDP_IO instance
|
||||
|
||||
|
||||
@retval EFI_SUCCESS The UDP is successfully configured for the
|
||||
session.
|
||||
|
||||
@@ -463,7 +463,7 @@ Dns4ConfigUdp (
|
||||
|
||||
/**
|
||||
Configure the UDP.
|
||||
|
||||
|
||||
@param Instance The DNS session
|
||||
@param UdpIo The UDP_IO instance
|
||||
|
||||
@@ -479,17 +479,17 @@ Dns6ConfigUdp (
|
||||
|
||||
/**
|
||||
Update Dns4 cache to shared list of caches of all DNSv4 instances.
|
||||
|
||||
|
||||
@param Dns4CacheList All Dns4 cache list.
|
||||
@param DeleteFlag If FALSE, this function is to add one entry to the DNS Cache.
|
||||
If TRUE, this function will delete matching DNS Cache entry.
|
||||
@param Override If TRUE, the matching DNS cache entry will be overwritten with the supplied parameter.
|
||||
@param DeleteFlag If FALSE, this function is to add one entry to the DNS Cache.
|
||||
If TRUE, this function will delete matching DNS Cache entry.
|
||||
@param Override If TRUE, the matching DNS cache entry will be overwritten with the supplied parameter.
|
||||
If FALSE, EFI_ACCESS_DENIED will be returned if the entry to be added is already exists.
|
||||
@param DnsCacheEntry Entry Pointer to DNS Cache entry.
|
||||
|
||||
@retval EFI_SUCCESS Update Dns4 cache successfully.
|
||||
@retval Others Failed to update Dns4 cache.
|
||||
|
||||
@retval Others Failed to update Dns4 cache.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
@@ -501,18 +501,18 @@ UpdateDns4Cache (
|
||||
);
|
||||
|
||||
/**
|
||||
Update Dns6 cache to shared list of caches of all DNSv6 instances.
|
||||
Update Dns6 cache to shared list of caches of all DNSv6 instances.
|
||||
|
||||
@param Dns6CacheList All Dns6 cache list.
|
||||
@param DeleteFlag If FALSE, this function is to add one entry to the DNS Cache.
|
||||
If TRUE, this function will delete matching DNS Cache entry.
|
||||
@param Override If TRUE, the matching DNS cache entry will be overwritten with the supplied parameter.
|
||||
@param DeleteFlag If FALSE, this function is to add one entry to the DNS Cache.
|
||||
If TRUE, this function will delete matching DNS Cache entry.
|
||||
@param Override If TRUE, the matching DNS cache entry will be overwritten with the supplied parameter.
|
||||
If FALSE, EFI_ACCESS_DENIED will be returned if the entry to be added is already exists.
|
||||
@param DnsCacheEntry Entry Pointer to DNS Cache entry.
|
||||
|
||||
|
||||
@retval EFI_SUCCESS Update Dns6 cache successfully.
|
||||
@retval Others Failed to update Dns6 cache.
|
||||
**/
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
UpdateDns6Cache (
|
||||
@@ -523,14 +523,14 @@ UpdateDns6Cache (
|
||||
);
|
||||
|
||||
/**
|
||||
Add Dns4 ServerIp to common list of addresses of all configured DNSv4 server.
|
||||
Add Dns4 ServerIp to common list of addresses of all configured DNSv4 server.
|
||||
|
||||
@param Dns4ServerList Common list of addresses of all configured DNSv4 server.
|
||||
@param ServerIp DNS server Ip.
|
||||
@param Dns4ServerList Common list of addresses of all configured DNSv4 server.
|
||||
@param ServerIp DNS server Ip.
|
||||
|
||||
@retval EFI_SUCCESS Add Dns4 ServerIp to common list successfully.
|
||||
@retval Others Failed to add Dns4 ServerIp to common list.
|
||||
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
@@ -540,15 +540,15 @@ AddDns4ServerIp (
|
||||
);
|
||||
|
||||
/**
|
||||
Add Dns6 ServerIp to common list of addresses of all configured DNSv6 server.
|
||||
Add Dns6 ServerIp to common list of addresses of all configured DNSv6 server.
|
||||
|
||||
@param Dns6ServerList Common list of addresses of all configured DNSv6 server.
|
||||
@param ServerIp DNS server Ip.
|
||||
@param Dns6ServerList Common list of addresses of all configured DNSv6 server.
|
||||
@param ServerIp DNS server Ip.
|
||||
|
||||
@retval EFI_SUCCESS Add Dns6 ServerIp to common list successfully.
|
||||
@retval Others Failed to add Dns6 ServerIp to common list.
|
||||
|
||||
**/
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
AddDns6ServerIp (
|
||||
@@ -559,16 +559,16 @@ AddDns6ServerIp (
|
||||
/**
|
||||
Find out whether the response is valid or invalid.
|
||||
|
||||
@param TokensMap All DNS transmittal Tokens entry.
|
||||
@param Identification Identification for queried packet.
|
||||
@param TokensMap All DNS transmittal Tokens entry.
|
||||
@param Identification Identification for queried packet.
|
||||
@param Type Type for queried packet.
|
||||
@param Class Class for queried packet.
|
||||
@param Item Return corresponding Token entry.
|
||||
|
||||
@retval TRUE The response is valid.
|
||||
@retval FALSE The response is invalid.
|
||||
|
||||
**/
|
||||
|
||||
**/
|
||||
BOOLEAN
|
||||
IsValidDnsResponse (
|
||||
IN NET_MAP *TokensMap,
|
||||
@@ -583,12 +583,12 @@ IsValidDnsResponse (
|
||||
|
||||
@param Instance The DNS instance
|
||||
@param RxString Received buffer.
|
||||
@param Completed Flag to indicate that Dns response is valid.
|
||||
|
||||
@param Completed Flag to indicate that Dns response is valid.
|
||||
|
||||
@retval EFI_SUCCESS Parse Dns Response successfully.
|
||||
@retval Others Failed to parse Dns Response.
|
||||
|
||||
**/
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
ParseDnsResponse (
|
||||
IN OUT DNS_INSTANCE *Instance,
|
||||
@@ -604,7 +604,7 @@ ParseDnsResponse (
|
||||
@param IoStatus The status of the UDP receive
|
||||
@param Context The opaque parameter to the function.
|
||||
|
||||
**/
|
||||
**/
|
||||
VOID
|
||||
EFIAPI
|
||||
DnsOnPacketReceived (
|
||||
@@ -652,9 +652,9 @@ DoDnsQuery (
|
||||
Construct the Packet according query section.
|
||||
|
||||
@param Instance The DNS instance
|
||||
@param QueryName Queried Name
|
||||
@param Type Queried Type
|
||||
@param Class Queried Class
|
||||
@param QueryName Queried Name
|
||||
@param Type Queried Type
|
||||
@param Class Queried Class
|
||||
@param Packet The packet for query
|
||||
|
||||
@retval EFI_SUCCESS The packet is constructed.
|
||||
@@ -674,7 +674,7 @@ ConstructDNSQuery (
|
||||
Retransmit the packet.
|
||||
|
||||
@param Instance The DNS instance
|
||||
@param Packet Retransmit the packet
|
||||
@param Packet Retransmit the packet
|
||||
|
||||
@retval EFI_SUCCESS The packet is retransmitted.
|
||||
@retval Others Failed to retransmit.
|
||||
@@ -748,7 +748,7 @@ Dns4GetModeData (
|
||||
@retval EFI_SUCCESS The operation completed successfully.
|
||||
@retval EFI_UNSUPPORTED The designated protocol is not supported.
|
||||
@retval EFI_INVALID_PARAMTER Thisis NULL.
|
||||
The StationIp address provided in DnsConfigData is not a
|
||||
The StationIp address provided in DnsConfigData is not a
|
||||
valid unicast.
|
||||
DnsServerList is NULL while DnsServerListCount
|
||||
is not ZERO.
|
||||
@@ -758,8 +758,8 @@ Dns4GetModeData (
|
||||
allocated.
|
||||
@retval EFI_DEVICE_ERROR An unexpected system or network error occurred. The
|
||||
EFI DNSv4 Protocol instance is not configured.
|
||||
@retval EFI_ALREADY_STARTED Second call to Configure() with DnsConfigData. To
|
||||
reconfigure the instance the caller must call Configure()
|
||||
@retval EFI_ALREADY_STARTED Second call to Configure() with DnsConfigData. To
|
||||
reconfigure the instance the caller must call Configure()
|
||||
with NULL first to return driver to unconfigured state.
|
||||
**/
|
||||
EFI_STATUS
|
||||
@@ -800,7 +800,7 @@ Dns4HostNameToIp (
|
||||
/**
|
||||
IPv4 address to host name translation also known as Reverse DNS lookup.
|
||||
|
||||
The IpToHostName() function is used to translate the host address to host name. A type PTR
|
||||
The IpToHostName() function is used to translate the host address to host name. A type PTR
|
||||
query is used to get the primary name of the host. Support of this function is optional.
|
||||
|
||||
@param[in] This Pointer to EFI_DNS4_PROTOCOL instance.
|
||||
@@ -828,7 +828,7 @@ Dns4IpToHostName (
|
||||
);
|
||||
|
||||
/**
|
||||
Retrieve arbitrary information from the DNS server.
|
||||
Retrieve arbitrary information from the DNS server.
|
||||
|
||||
This GeneralLookup() function retrieves arbitrary information from the DNS. The caller
|
||||
supplies a QNAME, QTYPE, and QCLASS, and all of the matching RRs are returned. All
|
||||
@@ -859,7 +859,7 @@ EFIAPI
|
||||
Dns4GeneralLookUp (
|
||||
IN EFI_DNS4_PROTOCOL *This,
|
||||
IN CHAR8 *QName,
|
||||
IN UINT16 QType,
|
||||
IN UINT16 QType,
|
||||
IN UINT16 QClass,
|
||||
IN EFI_DNS4_COMPLETION_TOKEN *Token
|
||||
);
|
||||
@@ -965,7 +965,7 @@ Dns4Cancel (
|
||||
This function is used to retrieve DNS mode data for this DNS instance.
|
||||
|
||||
@param[in] This Pointer to EFI_DNS6_PROTOCOL instance.
|
||||
@param[out] DnsModeData Pointer to the caller-allocated storage for the
|
||||
@param[out] DnsModeData Pointer to the caller-allocated storage for the
|
||||
EFI_DNS6_MODE_DATA data.
|
||||
|
||||
@retval EFI_SUCCESS The operation completed successfully.
|
||||
@@ -989,7 +989,7 @@ Dns6GetModeData (
|
||||
EFI DNSv6 Protocol driver instance. Reset the DNS instance if DnsConfigData is NULL.
|
||||
|
||||
@param[in] This Pointer to EFI_DNS6_PROTOCOL instance.
|
||||
@param[in] DnsConfigData Pointer to the configuration data structure. All associated
|
||||
@param[in] DnsConfigData Pointer to the configuration data structure. All associated
|
||||
storage to be allocated and released by caller.
|
||||
|
||||
@retval EFI_SUCCESS The operation completed successfully.
|
||||
@@ -1001,8 +1001,8 @@ Dns6GetModeData (
|
||||
@retval EFI_DEVICE_ERROR An unexpected system or network error occurred. The
|
||||
EFI DNSv6 Protocol instance is not configured.
|
||||
@retval EFI_UNSUPPORTED The designated protocol is not supported.
|
||||
@retval EFI_ALREADY_STARTED Second call to Configure() with DnsConfigData. To
|
||||
reconfigure the instance the caller must call Configure() with
|
||||
@retval EFI_ALREADY_STARTED Second call to Configure() with DnsConfigData. To
|
||||
reconfigure the instance the caller must call Configure() with
|
||||
NULL first to return driver to unconfigured state.
|
||||
**/
|
||||
EFI_STATUS
|
||||
@@ -1107,7 +1107,7 @@ EFIAPI
|
||||
Dns6GeneralLookUp (
|
||||
IN EFI_DNS6_PROTOCOL *This,
|
||||
IN CHAR8 *QName,
|
||||
IN UINT16 QType,
|
||||
IN UINT16 QType,
|
||||
IN UINT16 QClass,
|
||||
IN EFI_DNS6_COMPLETION_TOKEN *Token
|
||||
);
|
||||
|
Reference in New Issue
Block a user