]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/Ip4Config.h
Fix doxygen comment for structure and macro
[mirror_edk2.git] / MdePkg / Include / Protocol / Ip4Config.h
CommitLineData
d1f95000 1/** @file\r
c311f86b 2\r
3 This file provides a definition of the EFI IPv4 Configuration\r
4 Protocol.\r
5\r
4ca9b6c4 6 Copyright (c) 2006 - 2008, Intel Corporation\r
305a1279 7 All rights reserved. This program and the accompanying materials\r
8 are licensed and made available under the terms and conditions of the BSD License\r
9 which accompanies this distribution. The full text of the license may be found at\r
10 http://opensource.org/licenses/bsd-license.php\r
d1f95000 11\r
305a1279 12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
d1f95000 14\r
d1f95000 15**/\r
d1f95000 16#ifndef __EFI_IP4CONFIG_PROTOCOL_H__\r
17#define __EFI_IP4CONFIG_PROTOCOL_H__\r
18\r
19#include <Protocol/Ip4.h>\r
20\r
21#define EFI_IP4_CONFIG_PROTOCOL_GUID \\r
22 { \\r
23 0x3b95aa31, 0x3793, 0x434b, {0x86, 0x67, 0xc8, 0x07, 0x08, 0x92, 0xe0, 0x5e } \\r
24 }\r
25\r
26typedef struct _EFI_IP4_CONFIG_PROTOCOL EFI_IP4_CONFIG_PROTOCOL;\r
27\r
28#define IP4_CONFIG_VARIABLE_ATTRIBUTES \\r
29 (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS | \\r
305a1279 30 EFI_VARIABLE_RUNTIME_ACCESS)\r
d1f95000 31\r
32typedef struct {\r
33 EFI_IPv4_ADDRESS StationAddress;\r
34 EFI_IPv4_ADDRESS SubnetMask;\r
35 UINT32 RouteTableSize;\r
36 EFI_IP4_ROUTE_TABLE *RouteTable; //OPTIONAL\r
37} EFI_IP4_IPCONFIG_DATA;\r
38\r
39\r
40/**\r
41 Starts running the configuration policy for the EFI IPv4 Protocol driver.\r
42\r
43 @param This Pointer to the EFI_IP4_CONFIG_PROTOCOL instance.\r
44 @param DoneEvent Event that will be signaled when the EFI IPv4 Protocol driver\r
45 configuration policy completes execution. This event must be of\r
46 type EVT_NOTIFY_SIGNAL.\r
47 @param ReconfigEvent Event that will be signaled when the EFI IPv4 Protocol driver\r
48 configuration needs to be updated. This event must be of type\r
49 EVT_NOTIFY_SIGNAL.\r
50\r
51 @retval EFI_SUCCESS The configuration policy for the EFI IPv4 Protocol driver is now\r
52 running.\r
53 @retval EFI_INVALID_PARAMETER This, DoneEvent, or ReconfigEvent is NULL.\r
54 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r
55 @retval EFI_ALREADY_STARTED The configuration policy for the EFI IPv4 Protocol driver was\r
56 already started.\r
57 @retval EFI_DEVICE_ERROR An unexpected system error or network error occurred.\r
58 @retval EFI_UNSUPPORTED This interface does not support the EFI IPv4 Protocol driver\r
59 configuration.\r
60\r
61**/\r
62typedef\r
63EFI_STATUS\r
8b13229b 64(EFIAPI *EFI_IP4_CONFIG_START)(\r
d1f95000 65 IN EFI_IP4_CONFIG_PROTOCOL *This,\r
66 IN EFI_EVENT DoneEvent,\r
305a1279 67 IN EFI_EVENT ReconfigEvent\r
ed66e1bc 68 );\r
d1f95000 69\r
70/**\r
71 Stops running the configuration policy for the EFI IPv4 Protocol driver.\r
72\r
73 @param This Pointer to the EFI_IP4_CONFIG_PROTOCOL instance.\r
74\r
75 @retval EFI_SUCCESS The configuration policy for the EFI IPv4 Protocol driver has been stopped.\r
76 @retval EFI_INVALID_PARAMETER This is NULL.\r
77 @retval EFI_NOT_STARTED The configuration policy for the EFI IPv4 Protocol driver was not started.\r
78\r
79**/\r
80typedef\r
81EFI_STATUS\r
8b13229b 82(EFIAPI *EFI_IP4_CONFIG_STOP)(\r
305a1279 83 IN EFI_IP4_CONFIG_PROTOCOL *This\r
ed66e1bc 84 );\r
d1f95000 85\r
86/**\r
87 Returns the default configuration data (if any) for the EFI IPv4 Protocol driver.\r
88\r
89 @param This Pointer to the EFI_IP4_CONFIG_PROTOCOL instance.\r
90 @param IpConfigDataSize On input, the size of the IpConfigData buffer.\r
91 On output, the count of bytes that were written into the IpConfigData buffer.\r
92 @param IpConfigData Pointer to the EFI IPv4 Configuration Protocol driver\r
93 configuration data structure.\r
94\r
95 @retval EFI_SUCCESS The EFI IPv4 Protocol driver configuration has been returned.\r
96 @retval EFI_INVALID_PARAMETER This is NULL.\r
97 @retval EFI_NOT_STARTED The configuration policy for the EFI IPv4 Protocol driver is not\r
98 running.\r
99 @retval EFI_NOT_READY EFI IPv4 Protocol driver configuration is still running.\r
100 @retval EFI_ABORTED EFI IPv4 Protocol driver configuration could not complete.\r
101 @retval EFI_BUFFER_TOO_SMALL *IpConfigDataSize is smaller than the configuration data\r
102 buffer or IpConfigData is NULL.\r
103\r
104**/\r
105typedef\r
106EFI_STATUS\r
8b13229b 107(EFIAPI *EFI_IP4_CONFIG_GET_DATA)(\r
d1f95000 108 IN EFI_IP4_CONFIG_PROTOCOL *This,\r
109 IN OUT UINTN *IpConfigDataSize,\r
305a1279 110 OUT EFI_IP4_IPCONFIG_DATA *IpConfigData OPTIONAL\r
ed66e1bc 111 );\r
d1f95000 112\r
4ca9b6c4
LG
113/** \r
114 @par Protocol Description:\r
115 The EFI_IP4_CONFIG_PROTOCOL driver performs platform- and policy-dependent \r
116 configuration for the EFI IPv4 Protocol driver. \r
4ca9b6c4 117**/\r
d1f95000 118struct _EFI_IP4_CONFIG_PROTOCOL {\r
119 EFI_IP4_CONFIG_START Start;\r
120 EFI_IP4_CONFIG_STOP Stop;\r
121 EFI_IP4_CONFIG_GET_DATA GetData;\r
122};\r
123\r
124extern EFI_GUID gEfiIp4ConfigProtocolGuid;\r
125\r
126#endif\r