]> git.proxmox.com Git - mirror_edk2.git/blobdiff - NetworkPkg/Dhcp6Dxe/Dhcp6Io.c
NetworkPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / NetworkPkg / Dhcp6Dxe / Dhcp6Io.c
index d25b9734d8de7178c9ff6e648a1efeb0f86db32f..4f8393cb36ce93d87a035c2c37113db0a8ec4db1 100644 (file)
@@ -2,15 +2,9 @@
   Dhcp6 internal functions implementation.\r
 \r
   (C) Copyright 2014 Hewlett-Packard Development Company, L.P.<BR>\r
-  Copyright (c) 2009 - 2016 Intel Corporation. All rights reserved.<BR>\r
+  Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>\r
 \r
-  This program and the accompanying materials\r
-  are licensed and made available under the terms and conditions of the BSD License\r
-  which accompanies this distribution.  The full text of the license may be found at\r
-  http://opensource.org/licenses/bsd-license.php.\r
-\r
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+  SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
@@ -372,7 +366,7 @@ Dhcp6CleanupRetry (
 \r
   @retval   TRUE      The control block is in Instance's retry list.\r
   @retval   FALSE     The control block is NOT in Instance's retry list.\r
-  \r
+\r
 **/\r
 BOOLEAN\r
 Dhcp6IsValidTxCb (\r
@@ -1767,12 +1761,12 @@ Dhcp6StartInfoRequest (
   if (EFI_ERROR (Status) && (Status != EFI_ALREADY_STARTED)) {\r
     goto ON_ERROR;\r
   }\r
-  \r
+\r
   gBS->RestoreTPL (OldTpl);\r
   return EFI_SUCCESS;\r
-  \r
+\r
 ON_ERROR:\r
-  gBS->RestoreTPL (OldTpl); \r
+  gBS->RestoreTPL (OldTpl);\r
   RemoveEntryList (&InfCb->Link);\r
   FreePool (InfCb);\r
 \r
@@ -1896,7 +1890,7 @@ Dhcp6SendInfoRequestMsg (
   //\r
   Packet->Length += (UINT32) (Cursor - Packet->Dhcp6.Option);\r
   ASSERT (Packet->Size > Packet->Length + 8);\r
-  \r
+\r
   //\r
   // Clear initial time for current transaction.\r
   //\r
@@ -2232,15 +2226,15 @@ Dhcp6HandleReplyMsg (
       }\r
     } else if (Status == EFI_NOT_FOUND) {\r
       //\r
-      // Refer to RFC3315 Chapter 18.1.8, for each IA in the original Renew or Rebind message, \r
+      // Refer to RFC3315 Chapter 18.1.8, for each IA in the original Renew or Rebind message,\r
       // the client sends a Renew or Rebind if the IA is not in the Reply message.\r
       // Return EFI_SUCCESS so we can continue to restart the Renew/Rebind process.\r
       //\r
       return EFI_SUCCESS;\r
     }\r
-    \r
+\r
     goto ON_EXIT;\r
-    \r
+\r
   } else if (Option != NULL) {\r
     //\r
     // Any error status code option is found.\r
@@ -2289,7 +2283,7 @@ Dhcp6HandleReplyMsg (
     case Dhcp6StsNoBinding:\r
       if (Instance->IaCb.Ia->State == Dhcp6Renewing || Instance->IaCb.Ia->State == Dhcp6Rebinding) {\r
         //\r
-        // Refer to RFC3315 Chapter 18.1.8, for each IA in the original Renew or Rebind message, the client \r
+        // Refer to RFC3315 Chapter 18.1.8, for each IA in the original Renew or Rebind message, the client\r
         // sends a Request message if the IA contained a Status Code option with the NoBinding status.\r
         //\r
         Status = Dhcp6SendRequestMsg(Instance);\r
@@ -2308,7 +2302,7 @@ Dhcp6HandleReplyMsg (
   }\r
 \r
   return EFI_SUCCESS;\r
-  \r
+\r
 ON_EXIT:\r
 \r
   if (!EFI_ERROR(Status)) {\r
@@ -2318,7 +2312,7 @@ ON_EXIT:
                FALSE\r
                );\r
   }\r
-  \r
+\r
   return Status;\r
 }\r
 \r