]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Protocol/Dhcp4.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdePkg / Include / Protocol / Dhcp4.h
index c25af45299a73e3ae2ea58fe5ff58e12df299c01..3b2c615edf460e6126ec4b7e81f6a4f19eeeda0d 100644 (file)
@@ -4,16 +4,10 @@
   These protocols are used to collect configuration information for the EFI IPv4 Protocol\r
   drivers and to provide DHCPv4 server and PXE boot server discovery services.\r
 \r
-Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r
-This program and the accompanying materials are licensed and made available under \r
-the terms and conditions of the BSD License that accompanies this distribution.  \r
-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
-\r
-  @par Revision Reference:          \r
+Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
+SPDX-License-Identifier: BSD-2-Clause-Patent\r
+\r
+  @par Revision Reference:\r
   This Protocol was introduced in UEFI Specification 2.0.\r
 \r
 **/\r
@@ -33,182 +27,177 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
 typedef struct _EFI_DHCP4_PROTOCOL EFI_DHCP4_PROTOCOL;\r
 \r
-\r
 #pragma pack(1)\r
 typedef struct {\r
   ///\r
   /// DHCP option code.\r
   ///\r
-  UINT8               OpCode;\r
+  UINT8    OpCode;\r
   ///\r
   /// Length of the DHCP option data. Not present if OpCode is 0 or 255.\r
   ///\r
-  UINT8               Length;\r
+  UINT8    Length;\r
   ///\r
   /// Start of the DHCP option data. Not present if OpCode is 0 or 255 or if Length is zero.\r
   ///\r
-  UINT8               Data[1];\r
+  UINT8    Data[1];\r
 } EFI_DHCP4_PACKET_OPTION;\r
 #pragma pack()\r
 \r
-\r
 #pragma pack(1)\r
 ///\r
 /// EFI_DHCP4_PACKET defines the format of DHCPv4 packets. See RFC 2131 for more information.\r
 ///\r
 typedef struct {\r
-  UINT8             OpCode;\r
-  UINT8             HwType;\r
-  UINT8             HwAddrLen;\r
-  UINT8             Hops;\r
-  UINT32            Xid;\r
-  UINT16            Seconds;\r
-  UINT16            Reserved;\r
-  EFI_IPv4_ADDRESS  ClientAddr;       ///< Client IP address from client.\r
-  EFI_IPv4_ADDRESS  YourAddr;         ///< Client IP address from server.\r
-  EFI_IPv4_ADDRESS  ServerAddr;       ///< IP address of next server in bootstrap.\r
-  EFI_IPv4_ADDRESS  GatewayAddr;      ///< Relay agent IP address.\r
-  UINT8             ClientHwAddr[16]; ///< Client hardware address.\r
-  CHAR8             ServerName[64];\r
-  CHAR8             BootFileName[128];\r
-}EFI_DHCP4_HEADER;\r
+  UINT8               OpCode;\r
+  UINT8               HwType;\r
+  UINT8               HwAddrLen;\r
+  UINT8               Hops;\r
+  UINT32              Xid;\r
+  UINT16              Seconds;\r
+  UINT16              Reserved;\r
+  EFI_IPv4_ADDRESS    ClientAddr;       ///< Client IP address from client.\r
+  EFI_IPv4_ADDRESS    YourAddr;         ///< Client IP address from server.\r
+  EFI_IPv4_ADDRESS    ServerAddr;       ///< IP address of next server in bootstrap.\r
+  EFI_IPv4_ADDRESS    GatewayAddr;      ///< Relay agent IP address.\r
+  UINT8               ClientHwAddr[16]; ///< Client hardware address.\r
+  CHAR8               ServerName[64];\r
+  CHAR8               BootFileName[128];\r
+} EFI_DHCP4_HEADER;\r
 #pragma pack()\r
 \r
-\r
 #pragma pack(1)\r
 typedef struct {\r
   ///\r
   /// Size of the EFI_DHCP4_PACKET buffer.\r
   ///\r
-  UINT32              Size;\r
+  UINT32    Size;\r
   ///\r
-  /// Length of the EFI_DHCP4_PACKET from the first byte of the Header field \r
+  /// Length of the EFI_DHCP4_PACKET from the first byte of the Header field\r
   /// to the last byte of the Option[] field.\r
   ///\r
-  UINT32              Length;\r
+  UINT32    Length;\r
 \r
   struct {\r
     ///\r
     /// DHCP packet header.\r
     ///\r
-    EFI_DHCP4_HEADER  Header;\r
+    EFI_DHCP4_HEADER    Header;\r
     ///\r
     /// DHCP magik cookie in network byte order.\r
     ///\r
-    UINT32            Magik;\r
+    UINT32              Magik;\r
     ///\r
     /// Start of the DHCP packed option data.\r
     ///\r
-    UINT8             Option[1];\r
+    UINT8               Option[1];\r
   } Dhcp4;\r
 } EFI_DHCP4_PACKET;\r
 #pragma pack()\r
 \r
-\r
 typedef enum {\r
   ///\r
   /// The EFI DHCPv4 Protocol driver is stopped.\r
   ///\r
-  Dhcp4Stopped        = 0x0,\r
+  Dhcp4Stopped = 0x0,\r
   ///\r
   /// The EFI DHCPv4 Protocol driver is inactive.\r
   ///\r
-  Dhcp4Init           = 0x1,\r
+  Dhcp4Init = 0x1,\r
   ///\r
   /// The EFI DHCPv4 Protocol driver is collecting DHCP offer packets from DHCP servers.\r
   ///\r
-  Dhcp4Selecting      = 0x2,\r
+  Dhcp4Selecting = 0x2,\r
   ///\r
   /// The EFI DHCPv4 Protocol driver has sent the request to the DHCP server and is waiting for a response.\r
   ///\r
-  Dhcp4Requesting     = 0x3,\r
+  Dhcp4Requesting = 0x3,\r
   ///\r
   /// The DHCP configuration has completed.\r
   ///\r
-  Dhcp4Bound          = 0x4,\r
+  Dhcp4Bound = 0x4,\r
   ///\r
   /// The DHCP configuration is being renewed and another request has\r
   /// been sent out, but it has not received a response from the server yet.\r
   ///\r
-  Dhcp4Renewing       = 0x5,\r
+  Dhcp4Renewing = 0x5,\r
   ///\r
   /// The DHCP configuration has timed out and the EFI DHCPv4\r
   /// Protocol driver is trying to extend the lease time.\r
   ///\r
-  Dhcp4Rebinding      = 0x6,\r
+  Dhcp4Rebinding = 0x6,\r
   ///\r
   /// The EFI DHCPv4 Protocol driver was initialized with a previously\r
   /// allocated or known IP address.\r
   ///\r
-  Dhcp4InitReboot     = 0x7,\r
+  Dhcp4InitReboot = 0x7,\r
   ///\r
   /// The EFI DHCPv4 Protocol driver is seeking to reuse the previously\r
   /// allocated IP address by sending a request to the DHCP server.\r
   ///\r
-  Dhcp4Rebooting      = 0x8\r
+  Dhcp4Rebooting = 0x8\r
 } EFI_DHCP4_STATE;\r
 \r
-\r
-typedef enum{\r
+typedef enum {\r
   ///\r
   /// The packet to start the configuration sequence is about to be sent.\r
   ///\r
-  Dhcp4SendDiscover   = 0x01,\r
+  Dhcp4SendDiscover = 0x01,\r
   ///\r
   /// A reply packet was just received.\r
   ///\r
-  Dhcp4RcvdOffer      = 0x02,\r
+  Dhcp4RcvdOffer = 0x02,\r
   ///\r
   /// It is time for Dhcp4Callback to select an offer.\r
   ///\r
-  Dhcp4SelectOffer    = 0x03,\r
+  Dhcp4SelectOffer = 0x03,\r
   ///\r
   /// A request packet is about to be sent.\r
   ///\r
-  Dhcp4SendRequest    = 0x04,\r
+  Dhcp4SendRequest = 0x04,\r
   ///\r
   /// A DHCPACK packet was received and will be passed to Dhcp4Callback.\r
   ///\r
-  Dhcp4RcvdAck        = 0x05,\r
+  Dhcp4RcvdAck = 0x05,\r
   ///\r
   /// A DHCPNAK packet was received and will be passed to Dhcp4Callback.\r
   ///\r
-  Dhcp4RcvdNak        = 0x06,\r
+  Dhcp4RcvdNak = 0x06,\r
   ///\r
   /// A decline packet is about to be sent.\r
   ///\r
-  Dhcp4SendDecline    = 0x07,\r
+  Dhcp4SendDecline = 0x07,\r
   ///\r
   /// The DHCP configuration process has completed. No packet is associated with this event.\r
   ///\r
   Dhcp4BoundCompleted = 0x08,\r
   ///\r
-  /// It is time to enter the Dhcp4Renewing state and to contact the server \r
+  /// It is time to enter the Dhcp4Renewing state and to contact the server\r
   /// that originally issued the network address. No packet is associated with this event.\r
   ///\r
-  Dhcp4EnterRenewing  = 0x09,\r
+  Dhcp4EnterRenewing = 0x09,\r
   ///\r
-  /// It is time to enter the Dhcp4Rebinding state and to contact any server. \r
+  /// It is time to enter the Dhcp4Rebinding state and to contact any server.\r
   /// No packet is associated with this event.\r
   ///\r
   Dhcp4EnterRebinding = 0x0a,\r
   ///\r
-  /// The configured IP address was lost either because the lease has expired, \r
-  /// the user released the configuration, or a DHCPNAK packet was received in \r
+  /// The configured IP address was lost either because the lease has expired,\r
+  /// the user released the configuration, or a DHCPNAK packet was received in\r
   /// the Dhcp4Renewing or Dhcp4Rebinding state. No packet is associated with this event.\r
   ///\r
-  Dhcp4AddressLost    = 0x0b,\r
+  Dhcp4AddressLost = 0x0b,\r
   ///\r
-  /// The DHCP process failed because a DHCPNAK packet was received or the user \r
-  /// aborted the DHCP process at a time when the configuration was not available yet. \r
+  /// The DHCP process failed because a DHCPNAK packet was received or the user\r
+  /// aborted the DHCP process at a time when the configuration was not available yet.\r
   /// No packet is associated with this event.\r
   ///\r
-  Dhcp4Fail           = 0x0c\r
+  Dhcp4Fail = 0x0c\r
 } EFI_DHCP4_EVENT;\r
 \r
 /**\r
   Callback routine.\r
-  \r
+\r
   EFI_DHCP4_CALLBACK is provided by the consumer of the EFI DHCPv4 Protocol driver\r
   to intercept events that occurred in the configuration process. This structure\r
   provides advanced control of each state transition of the DHCP process. The\r
@@ -255,46 +244,46 @@ typedef struct {
   /// event and waiting for a response during the Dhcp4RcvdOffer event.\r
   /// Set to zero to use the default try counts and timeout values.\r
   ///\r
-  UINT32                      DiscoverTryCount;\r
+  UINT32                     DiscoverTryCount;\r
   ///\r
-  /// The maximum amount of time (in seconds) to wait for returned packets in each \r
-  /// of the retries. Timeout values of zero will default to a timeout value \r
+  /// The maximum amount of time (in seconds) to wait for returned packets in each\r
+  /// of the retries. Timeout values of zero will default to a timeout value\r
   /// of one second. Set to NULL to use default timeout values.\r
   ///\r
-  UINT32                      *DiscoverTimeout;\r
+  UINT32                     *DiscoverTimeout;\r
   ///\r
   /// The number of times to try sending a packet during the Dhcp4SendRequest event\r
   /// and waiting for a response during the Dhcp4RcvdAck event before accepting\r
   /// failure. Set to zero to use the default try counts and timeout values.\r
   ///\r
-  UINT32                      RequestTryCount;\r
+  UINT32                     RequestTryCount;\r
   ///\r
-  /// The maximum amount of time (in seconds) to wait for return packets in each of the retries. \r
-  /// Timeout values of zero will default to a timeout value of one second. \r
+  /// The maximum amount of time (in seconds) to wait for return packets in each of the retries.\r
+  /// Timeout values of zero will default to a timeout value of one second.\r
   /// Set to NULL to use default timeout values.\r
   ///\r
-  UINT32                      *RequestTimeout;\r
+  UINT32                     *RequestTimeout;\r
   ///\r
   /// For a DHCPDISCOVER, setting this parameter to the previously allocated IP\r
-  /// address will cause the EFI DHCPv4 Protocol driver to enter the Dhcp4InitReboot state. \r
+  /// address will cause the EFI DHCPv4 Protocol driver to enter the Dhcp4InitReboot state.\r
   /// And set this field to 0.0.0.0 to enter the Dhcp4Init state.\r
   /// For a DHCPINFORM this parameter should be set to the client network address\r
   /// which was assigned to the client during a DHCPDISCOVER.\r
   ///\r
-  EFI_IPv4_ADDRESS            ClientAddress;\r
+  EFI_IPv4_ADDRESS           ClientAddress;\r
   ///\r
-  /// The callback function to intercept various events that occurred in \r
+  /// The callback function to intercept various events that occurred in\r
   /// the DHCP configuration process. Set to NULL to ignore all those events.\r
   ///\r
-  EFI_DHCP4_CALLBACK          Dhcp4Callback;\r
+  EFI_DHCP4_CALLBACK         Dhcp4Callback;\r
   ///\r
   /// The pointer to the context that will be passed to Dhcp4Callback when it is called.\r
   ///\r
-  VOID                        *CallbackContext;\r
+  VOID                       *CallbackContext;\r
   ///\r
   /// Number of DHCP options in the OptionList.\r
   ///\r
-  UINT32                      OptionCount;\r
+  UINT32                     OptionCount;\r
   ///\r
   /// List of DHCP options to be included in every packet that is sent during the\r
   /// Dhcp4SendDiscover event. Pad options are appended automatically by DHCP driver\r
@@ -302,125 +291,121 @@ typedef struct {
   /// ignored by the driver. OptionList can be freed after EFI_DHCP4_PROTOCOL.Configure()\r
   /// returns. Ignored if OptionCount is zero.\r
   ///\r
-  EFI_DHCP4_PACKET_OPTION     **OptionList;\r
+  EFI_DHCP4_PACKET_OPTION    **OptionList;\r
 } EFI_DHCP4_CONFIG_DATA;\r
 \r
-\r
 typedef struct {\r
   ///\r
-  /// The EFI DHCPv4 Protocol driver operating state. \r
+  /// The EFI DHCPv4 Protocol driver operating state.\r
   ///\r
-  EFI_DHCP4_STATE             State;\r
+  EFI_DHCP4_STATE          State;\r
   ///\r
   /// The configuration data of the current EFI DHCPv4 Protocol driver instance.\r
   ///\r
-  EFI_DHCP4_CONFIG_DATA       ConfigData;\r
+  EFI_DHCP4_CONFIG_DATA    ConfigData;\r
   ///\r
   /// The client IP address that was acquired from the DHCP server. If it is zero,\r
   /// the DHCP acquisition has not completed yet and the following fields in this structure are undefined.\r
   ///\r
-  EFI_IPv4_ADDRESS            ClientAddress;\r
+  EFI_IPv4_ADDRESS         ClientAddress;\r
   ///\r
   /// The local hardware address.\r
   ///\r
-  EFI_MAC_ADDRESS             ClientMacAddress;\r
+  EFI_MAC_ADDRESS          ClientMacAddress;\r
   ///\r
   /// The server IP address that is providing the DHCP service to this client.\r
   ///\r
-  EFI_IPv4_ADDRESS            ServerAddress;\r
+  EFI_IPv4_ADDRESS         ServerAddress;\r
   ///\r
-  /// The router IP address that was acquired from the DHCP server. \r
+  /// The router IP address that was acquired from the DHCP server.\r
   /// May be zero if the server does not offer this address.\r
   ///\r
-  EFI_IPv4_ADDRESS            RouterAddress;\r
+  EFI_IPv4_ADDRESS         RouterAddress;\r
   ///\r
   /// The subnet mask of the connected network that was acquired from the DHCP server.\r
   ///\r
-  EFI_IPv4_ADDRESS            SubnetMask;\r
+  EFI_IPv4_ADDRESS         SubnetMask;\r
   ///\r
-  /// The lease time (in 1-second units) of the configured IP address. \r
-  /// The value 0xFFFFFFFF means that the lease time is infinite. \r
+  /// The lease time (in 1-second units) of the configured IP address.\r
+  /// The value 0xFFFFFFFF means that the lease time is infinite.\r
   /// A default lease of 7 days is used if the DHCP server does not provide a value.\r
   ///\r
-  UINT32                      LeaseTime;\r
+  UINT32                   LeaseTime;\r
   ///\r
   /// The cached latest DHCPACK or DHCPNAK or BOOTP REPLY packet. May be NULL if no packet is cached.\r
   ///\r
-  EFI_DHCP4_PACKET            *ReplyPacket;\r
+  EFI_DHCP4_PACKET         *ReplyPacket;\r
 } EFI_DHCP4_MODE_DATA;\r
 \r
-\r
 typedef struct {\r
   ///\r
   /// Alternate listening address. It can be a unicast, multicast, or broadcast address.\r
   ///\r
-  EFI_IPv4_ADDRESS            ListenAddress;\r
+  EFI_IPv4_ADDRESS    ListenAddress;\r
   ///\r
-  /// The subnet mask of above listening unicast/broadcast IP address. \r
+  /// The subnet mask of above listening unicast/broadcast IP address.\r
   /// Ignored if ListenAddress is a multicast address.\r
   ///\r
-  EFI_IPv4_ADDRESS            SubnetMask;\r
+  EFI_IPv4_ADDRESS    SubnetMask;\r
   ///\r
-  /// Alternate station source (or listening) port number. \r
+  /// Alternate station source (or listening) port number.\r
   /// If zero, then the default station port number (68) will be used.\r
   ///\r
-  UINT16                      ListenPort;\r
+  UINT16              ListenPort;\r
 } EFI_DHCP4_LISTEN_POINT;\r
 \r
-\r
 typedef struct {\r
   ///\r
   /// The completion status of transmitting and receiving.\r
   ///\r
-  EFI_STATUS              Status;\r
+  EFI_STATUS                Status;\r
   ///\r
-  /// If not NULL, the event that will be signaled when the collection process \r
+  /// If not NULL, the event that will be signaled when the collection process\r
   /// completes. If NULL, this function will busy-wait until the collection process competes.\r
   ///\r
-  EFI_EVENT               CompletionEvent;\r
+  EFI_EVENT                 CompletionEvent;\r
   ///\r
   /// The pointer to the server IP address. This address may be a unicast, multicast, or broadcast address.\r
   ///\r
-  EFI_IPv4_ADDRESS        RemoteAddress;\r
+  EFI_IPv4_ADDRESS          RemoteAddress;\r
   ///\r
   /// The server listening port number. If zero, the default server listening port number (67) will be used.\r
   ///\r
-  UINT16                  RemotePort;\r
+  UINT16                    RemotePort;\r
   ///\r
   /// The pointer to the gateway address to override the existing setting.\r
   ///\r
-  EFI_IPv4_ADDRESS        GatewayAddress;\r
+  EFI_IPv4_ADDRESS          GatewayAddress;\r
   ///\r
   /// The number of entries in ListenPoints. If zero, the default station address and port number 68 are used.\r
   ///\r
-  UINT32                  ListenPointCount;\r
+  UINT32                    ListenPointCount;\r
   ///\r
-  /// An array of station address and port number pairs that are used as receiving filters. \r
+  /// An array of station address and port number pairs that are used as receiving filters.\r
   /// The first entry is also used as the source address and source port of the outgoing packet.\r
   ///\r
-  EFI_DHCP4_LISTEN_POINT  *ListenPoints;\r
+  EFI_DHCP4_LISTEN_POINT    *ListenPoints;\r
   ///\r
   /// The number of seconds to collect responses. Zero is invalid.\r
   ///\r
-  UINT32                  TimeoutValue;\r
+  UINT32                    TimeoutValue;\r
   ///\r
   /// The pointer to the packet to be transmitted.\r
   ///\r
-  EFI_DHCP4_PACKET        *Packet;\r
+  EFI_DHCP4_PACKET          *Packet;\r
   ///\r
   /// Number of received packets.\r
   ///\r
-  UINT32                  ResponseCount;\r
+  UINT32                    ResponseCount;\r
   ///\r
   /// The pointer to the allocated list of received packets.\r
   ///\r
-  EFI_DHCP4_PACKET        *ResponseList;\r
+  EFI_DHCP4_PACKET          *ResponseList;\r
 } EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN;\r
 \r
-\r
 /**\r
   Returns the current operating mode and cached data packet for the EFI DHCPv4 Protocol driver.\r
-  \r
+\r
   The GetModeData() function returns the current operating mode and cached data\r
   packet for the EFI DHCPv4 Protocol driver.\r
 \r
@@ -493,7 +478,6 @@ EFI_STATUS
   IN EFI_DHCP4_CONFIG_DATA    *Dhcp4CfgData  OPTIONAL\r
   );\r
 \r
-\r
 /**\r
   Starts the DHCP configuration process.\r
 \r
@@ -510,7 +494,7 @@ EFI_STATUS
   time when each event occurs in this process, the callback function that was set\r
   by EFI_DHCP4_PROTOCOL.Configure() will be called and the user can take this\r
   opportunity to control the process.\r
-  \r
+\r
   @param  This            The pointer to the EFI_DHCP4_PROTOCOL instance.\r
   @param  CompletionEvent If not NULL, it indicates the event that will be signaled when the\r
                           EFI DHCPv4 Protocol driver is transferred into the\r
@@ -544,7 +528,7 @@ EFI_STATUS
 \r
 /**\r
   Extends the lease time by sending a request packet.\r
-  \r
+\r
   The RenewRebind() function is used to manually extend the lease time when the\r
   EFI DHCPv4 Protocol driver is in the Dhcp4Bound state, and the lease time has\r
   not expired yet. This function will send a request packet to the previously\r
@@ -617,7 +601,7 @@ EFI_STATUS
 \r
 /**\r
   Stops the current address configuration.\r
-  \r
+\r
   The Stop() function is used to stop the DHCP configuration process. After this\r
   function is called successfully, the EFI DHCPv4 Protocol driver is transferred\r
   into the Dhcp4Stopped state. EFI_DHCP4_PROTOCOL.Configure() needs to be called\r
@@ -683,10 +667,9 @@ EFI_STATUS
   OUT EFI_DHCP4_PACKET        **NewPacket\r
   );\r
 \r
-\r
 /**\r
   Transmits a DHCP formatted packet and optionally waits for responses.\r
-  \r
+\r
   The TransmitReceive() function is used to transmit a DHCP packet and optionally\r
   wait for the response from servers. This function does not change the state of\r
   the EFI DHCPv4 Protocol driver. It can be used at any time because of this.\r
@@ -716,10 +699,9 @@ EFI_STATUS
   IN EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN  *Token\r
   );\r
 \r
-\r
 /**\r
   Parses the packed DHCP option data.\r
-  \r
+\r
   The Parse() function is used to retrieve the option list from a DHCP packet.\r
   If *OptionCount isn't zero, and there is enough space for all the DHCP options\r
   in the Packet, each element of PacketOptionList is set to point to somewhere in\r
@@ -763,18 +745,18 @@ EFI_STATUS
 /// and to provide DHCPv4 server and PXE boot server discovery services.\r
 ///\r
 struct _EFI_DHCP4_PROTOCOL {\r
-  EFI_DHCP4_GET_MODE_DATA      GetModeData;\r
-  EFI_DHCP4_CONFIGURE          Configure;\r
-  EFI_DHCP4_START              Start;\r
-  EFI_DHCP4_RENEW_REBIND       RenewRebind;\r
-  EFI_DHCP4_RELEASE            Release;\r
-  EFI_DHCP4_STOP               Stop;\r
-  EFI_DHCP4_BUILD              Build;\r
-  EFI_DHCP4_TRANSMIT_RECEIVE   TransmitReceive;\r
-  EFI_DHCP4_PARSE              Parse;\r
+  EFI_DHCP4_GET_MODE_DATA       GetModeData;\r
+  EFI_DHCP4_CONFIGURE           Configure;\r
+  EFI_DHCP4_START               Start;\r
+  EFI_DHCP4_RENEW_REBIND        RenewRebind;\r
+  EFI_DHCP4_RELEASE             Release;\r
+  EFI_DHCP4_STOP                Stop;\r
+  EFI_DHCP4_BUILD               Build;\r
+  EFI_DHCP4_TRANSMIT_RECEIVE    TransmitReceive;\r
+  EFI_DHCP4_PARSE               Parse;\r
 };\r
 \r
-extern EFI_GUID gEfiDhcp4ProtocolGuid;\r
-extern EFI_GUID gEfiDhcp4ServiceBindingProtocolGuid;\r
+extern EFI_GUID  gEfiDhcp4ProtocolGuid;\r
+extern EFI_GUID  gEfiDhcp4ServiceBindingProtocolGuid;\r
 \r
 #endif\r