efinet.h revision 1.1.1.1.4.2 1 1.1.1.1.4.2 rmind /* $NetBSD: efinet.h,v 1.1.1.1.4.2 2014/05/18 17:46:02 rmind Exp $ */
2 1.1.1.1.4.2 rmind
3 1.1.1.1.4.2 rmind #ifndef _EFINET_H
4 1.1.1.1.4.2 rmind #define _EFINET_H
5 1.1.1.1.4.2 rmind
6 1.1.1.1.4.2 rmind
7 1.1.1.1.4.2 rmind /*++
8 1.1.1.1.4.2 rmind Copyright (c) 1999 Intel Corporation
9 1.1.1.1.4.2 rmind
10 1.1.1.1.4.2 rmind Module Name:
11 1.1.1.1.4.2 rmind efinet.h
12 1.1.1.1.4.2 rmind
13 1.1.1.1.4.2 rmind Abstract:
14 1.1.1.1.4.2 rmind EFI Simple Network protocol
15 1.1.1.1.4.2 rmind
16 1.1.1.1.4.2 rmind Revision History
17 1.1.1.1.4.2 rmind --*/
18 1.1.1.1.4.2 rmind
19 1.1.1.1.4.2 rmind
20 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
21 1.1.1.1.4.2 rmind //
22 1.1.1.1.4.2 rmind // Simple Network Protocol
23 1.1.1.1.4.2 rmind //
24 1.1.1.1.4.2 rmind
25 1.1.1.1.4.2 rmind #define EFI_SIMPLE_NETWORK_PROTOCOL \
26 1.1.1.1.4.2 rmind { 0xA19832B9, 0xAC25, 0x11D3, {0x9A, 0x2D, 0x00, 0x90, 0x27, 0x3F, 0xC1, 0x4D} }
27 1.1.1.1.4.2 rmind
28 1.1.1.1.4.2 rmind
29 1.1.1.1.4.2 rmind INTERFACE_DECL(_EFI_SIMPLE_NETWORK);
30 1.1.1.1.4.2 rmind
31 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
32 1.1.1.1.4.2 rmind //
33 1.1.1.1.4.2 rmind
34 1.1.1.1.4.2 rmind typedef struct {
35 1.1.1.1.4.2 rmind //
36 1.1.1.1.4.2 rmind // Total number of frames received. Includes frames with errors and
37 1.1.1.1.4.2 rmind // dropped frames.
38 1.1.1.1.4.2 rmind //
39 1.1.1.1.4.2 rmind UINT64 RxTotalFrames;
40 1.1.1.1.4.2 rmind
41 1.1.1.1.4.2 rmind //
42 1.1.1.1.4.2 rmind // Number of valid frames received and copied into receive buffers.
43 1.1.1.1.4.2 rmind //
44 1.1.1.1.4.2 rmind UINT64 RxGoodFrames;
45 1.1.1.1.4.2 rmind
46 1.1.1.1.4.2 rmind //
47 1.1.1.1.4.2 rmind // Number of frames below the minimum length for the media.
48 1.1.1.1.4.2 rmind // This would be <64 for ethernet.
49 1.1.1.1.4.2 rmind //
50 1.1.1.1.4.2 rmind UINT64 RxUndersizeFrames;
51 1.1.1.1.4.2 rmind
52 1.1.1.1.4.2 rmind //
53 1.1.1.1.4.2 rmind // Number of frames longer than the maxminum length for the
54 1.1.1.1.4.2 rmind // media. This would be >1500 for ethernet.
55 1.1.1.1.4.2 rmind //
56 1.1.1.1.4.2 rmind UINT64 RxOversizeFrames;
57 1.1.1.1.4.2 rmind
58 1.1.1.1.4.2 rmind //
59 1.1.1.1.4.2 rmind // Valid frames that were dropped because receive buffers were full.
60 1.1.1.1.4.2 rmind //
61 1.1.1.1.4.2 rmind UINT64 RxDroppedFrames;
62 1.1.1.1.4.2 rmind
63 1.1.1.1.4.2 rmind //
64 1.1.1.1.4.2 rmind // Number of valid unicast frames received and not dropped.
65 1.1.1.1.4.2 rmind //
66 1.1.1.1.4.2 rmind UINT64 RxUnicastFrames;
67 1.1.1.1.4.2 rmind
68 1.1.1.1.4.2 rmind //
69 1.1.1.1.4.2 rmind // Number of valid broadcast frames received and not dropped.
70 1.1.1.1.4.2 rmind //
71 1.1.1.1.4.2 rmind UINT64 RxBroadcastFrames;
72 1.1.1.1.4.2 rmind
73 1.1.1.1.4.2 rmind //
74 1.1.1.1.4.2 rmind // Number of valid mutlicast frames received and not dropped.
75 1.1.1.1.4.2 rmind //
76 1.1.1.1.4.2 rmind UINT64 RxMulticastFrames;
77 1.1.1.1.4.2 rmind
78 1.1.1.1.4.2 rmind //
79 1.1.1.1.4.2 rmind // Number of frames w/ CRC or alignment errors.
80 1.1.1.1.4.2 rmind //
81 1.1.1.1.4.2 rmind UINT64 RxCrcErrorFrames;
82 1.1.1.1.4.2 rmind
83 1.1.1.1.4.2 rmind //
84 1.1.1.1.4.2 rmind // Total number of bytes received. Includes frames with errors
85 1.1.1.1.4.2 rmind // and dropped frames.
86 1.1.1.1.4.2 rmind //
87 1.1.1.1.4.2 rmind UINT64 RxTotalBytes;
88 1.1.1.1.4.2 rmind
89 1.1.1.1.4.2 rmind //
90 1.1.1.1.4.2 rmind // Transmit statistics.
91 1.1.1.1.4.2 rmind //
92 1.1.1.1.4.2 rmind UINT64 TxTotalFrames;
93 1.1.1.1.4.2 rmind UINT64 TxGoodFrames;
94 1.1.1.1.4.2 rmind UINT64 TxUndersizeFrames;
95 1.1.1.1.4.2 rmind UINT64 TxOversizeFrames;
96 1.1.1.1.4.2 rmind UINT64 TxDroppedFrames;
97 1.1.1.1.4.2 rmind UINT64 TxUnicastFrames;
98 1.1.1.1.4.2 rmind UINT64 TxBroadcastFrames;
99 1.1.1.1.4.2 rmind UINT64 TxMulticastFrames;
100 1.1.1.1.4.2 rmind UINT64 TxCrcErrorFrames;
101 1.1.1.1.4.2 rmind UINT64 TxTotalBytes;
102 1.1.1.1.4.2 rmind
103 1.1.1.1.4.2 rmind //
104 1.1.1.1.4.2 rmind // Number of collisions detection on this subnet.
105 1.1.1.1.4.2 rmind //
106 1.1.1.1.4.2 rmind UINT64 Collisions;
107 1.1.1.1.4.2 rmind
108 1.1.1.1.4.2 rmind //
109 1.1.1.1.4.2 rmind // Number of frames destined for unsupported protocol.
110 1.1.1.1.4.2 rmind //
111 1.1.1.1.4.2 rmind UINT64 UnsupportedProtocol;
112 1.1.1.1.4.2 rmind
113 1.1.1.1.4.2 rmind } EFI_NETWORK_STATISTICS;
114 1.1.1.1.4.2 rmind
115 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
116 1.1.1.1.4.2 rmind //
117 1.1.1.1.4.2 rmind
118 1.1.1.1.4.2 rmind typedef enum {
119 1.1.1.1.4.2 rmind EfiSimpleNetworkStopped,
120 1.1.1.1.4.2 rmind EfiSimpleNetworkStarted,
121 1.1.1.1.4.2 rmind EfiSimpleNetworkInitialized,
122 1.1.1.1.4.2 rmind EfiSimpleNetworkMaxState
123 1.1.1.1.4.2 rmind } EFI_SIMPLE_NETWORK_STATE;
124 1.1.1.1.4.2 rmind
125 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
126 1.1.1.1.4.2 rmind //
127 1.1.1.1.4.2 rmind
128 1.1.1.1.4.2 rmind #define EFI_SIMPLE_NETWORK_RECEIVE_UNICAST 0x01
129 1.1.1.1.4.2 rmind #define EFI_SIMPLE_NETWORK_RECEIVE_MULTICAST 0x02
130 1.1.1.1.4.2 rmind #define EFI_SIMPLE_NETWORK_RECEIVE_BROADCAST 0x04
131 1.1.1.1.4.2 rmind #define EFI_SIMPLE_NETWORK_RECEIVE_PROMISCUOUS 0x08
132 1.1.1.1.4.2 rmind #define EFI_SIMPLE_NETWORK_RECEIVE_PROMISCUOUS_MULTICAST 0x10
133 1.1.1.1.4.2 rmind
134 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
135 1.1.1.1.4.2 rmind //
136 1.1.1.1.4.2 rmind
137 1.1.1.1.4.2 rmind #define EFI_SIMPLE_NETWORK_RECEIVE_INTERRUPT 0x01
138 1.1.1.1.4.2 rmind #define EFI_SIMPLE_NETWORK_TRANSMIT_INTERRUPT 0x02
139 1.1.1.1.4.2 rmind #define EFI_SIMPLE_NETWORK_COMMAND_INTERRUPT 0x04
140 1.1.1.1.4.2 rmind #define EFI_SIMPLE_NETWORK_SOFTWARE_INTERRUPT 0x08
141 1.1.1.1.4.2 rmind
142 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
143 1.1.1.1.4.2 rmind //
144 1.1.1.1.4.2 rmind #define MAX_MCAST_FILTER_CNT 16
145 1.1.1.1.4.2 rmind typedef struct {
146 1.1.1.1.4.2 rmind UINT32 State;
147 1.1.1.1.4.2 rmind UINT32 HwAddressSize;
148 1.1.1.1.4.2 rmind UINT32 MediaHeaderSize;
149 1.1.1.1.4.2 rmind UINT32 MaxPacketSize;
150 1.1.1.1.4.2 rmind UINT32 NvRamSize;
151 1.1.1.1.4.2 rmind UINT32 NvRamAccessSize;
152 1.1.1.1.4.2 rmind UINT32 ReceiveFilterMask;
153 1.1.1.1.4.2 rmind UINT32 ReceiveFilterSetting;
154 1.1.1.1.4.2 rmind UINT32 MaxMCastFilterCount;
155 1.1.1.1.4.2 rmind UINT32 MCastFilterCount;
156 1.1.1.1.4.2 rmind EFI_MAC_ADDRESS MCastFilter[MAX_MCAST_FILTER_CNT];
157 1.1.1.1.4.2 rmind EFI_MAC_ADDRESS CurrentAddress;
158 1.1.1.1.4.2 rmind EFI_MAC_ADDRESS BroadcastAddress;
159 1.1.1.1.4.2 rmind EFI_MAC_ADDRESS PermanentAddress;
160 1.1.1.1.4.2 rmind UINT8 IfType;
161 1.1.1.1.4.2 rmind BOOLEAN MacAddressChangeable;
162 1.1.1.1.4.2 rmind BOOLEAN MultipleTxSupported;
163 1.1.1.1.4.2 rmind BOOLEAN MediaPresentSupported;
164 1.1.1.1.4.2 rmind BOOLEAN MediaPresent;
165 1.1.1.1.4.2 rmind } EFI_SIMPLE_NETWORK_MODE;
166 1.1.1.1.4.2 rmind
167 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
168 1.1.1.1.4.2 rmind //
169 1.1.1.1.4.2 rmind
170 1.1.1.1.4.2 rmind typedef
171 1.1.1.1.4.2 rmind EFI_STATUS
172 1.1.1.1.4.2 rmind (EFIAPI *EFI_SIMPLE_NETWORK_START) (
173 1.1.1.1.4.2 rmind IN struct _EFI_SIMPLE_NETWORK *This
174 1.1.1.1.4.2 rmind );
175 1.1.1.1.4.2 rmind
176 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
177 1.1.1.1.4.2 rmind //
178 1.1.1.1.4.2 rmind
179 1.1.1.1.4.2 rmind typedef
180 1.1.1.1.4.2 rmind EFI_STATUS
181 1.1.1.1.4.2 rmind (EFIAPI *EFI_SIMPLE_NETWORK_STOP) (
182 1.1.1.1.4.2 rmind IN struct _EFI_SIMPLE_NETWORK *This
183 1.1.1.1.4.2 rmind );
184 1.1.1.1.4.2 rmind
185 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
186 1.1.1.1.4.2 rmind //
187 1.1.1.1.4.2 rmind
188 1.1.1.1.4.2 rmind typedef
189 1.1.1.1.4.2 rmind EFI_STATUS
190 1.1.1.1.4.2 rmind (EFIAPI *EFI_SIMPLE_NETWORK_INITIALIZE) (
191 1.1.1.1.4.2 rmind IN struct _EFI_SIMPLE_NETWORK *This,
192 1.1.1.1.4.2 rmind IN UINTN ExtraRxBufferSize OPTIONAL,
193 1.1.1.1.4.2 rmind IN UINTN ExtraTxBufferSize OPTIONAL
194 1.1.1.1.4.2 rmind );
195 1.1.1.1.4.2 rmind
196 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
197 1.1.1.1.4.2 rmind //
198 1.1.1.1.4.2 rmind
199 1.1.1.1.4.2 rmind typedef
200 1.1.1.1.4.2 rmind EFI_STATUS
201 1.1.1.1.4.2 rmind (EFIAPI *EFI_SIMPLE_NETWORK_RESET) (
202 1.1.1.1.4.2 rmind IN struct _EFI_SIMPLE_NETWORK *This,
203 1.1.1.1.4.2 rmind IN BOOLEAN ExtendedVerification
204 1.1.1.1.4.2 rmind );
205 1.1.1.1.4.2 rmind
206 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
207 1.1.1.1.4.2 rmind //
208 1.1.1.1.4.2 rmind
209 1.1.1.1.4.2 rmind typedef
210 1.1.1.1.4.2 rmind EFI_STATUS
211 1.1.1.1.4.2 rmind (EFIAPI *EFI_SIMPLE_NETWORK_SHUTDOWN) (
212 1.1.1.1.4.2 rmind IN struct _EFI_SIMPLE_NETWORK *This
213 1.1.1.1.4.2 rmind );
214 1.1.1.1.4.2 rmind
215 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
216 1.1.1.1.4.2 rmind //
217 1.1.1.1.4.2 rmind
218 1.1.1.1.4.2 rmind typedef
219 1.1.1.1.4.2 rmind EFI_STATUS
220 1.1.1.1.4.2 rmind (EFIAPI *EFI_SIMPLE_NETWORK_RECEIVE_FILTERS) (
221 1.1.1.1.4.2 rmind IN struct _EFI_SIMPLE_NETWORK *This,
222 1.1.1.1.4.2 rmind IN UINT32 Enable,
223 1.1.1.1.4.2 rmind IN UINT32 Disable,
224 1.1.1.1.4.2 rmind IN BOOLEAN ResetMCastFilter,
225 1.1.1.1.4.2 rmind IN UINTN MCastFilterCnt OPTIONAL,
226 1.1.1.1.4.2 rmind IN EFI_MAC_ADDRESS *MCastFilter OPTIONAL
227 1.1.1.1.4.2 rmind );
228 1.1.1.1.4.2 rmind
229 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
230 1.1.1.1.4.2 rmind //
231 1.1.1.1.4.2 rmind
232 1.1.1.1.4.2 rmind typedef
233 1.1.1.1.4.2 rmind EFI_STATUS
234 1.1.1.1.4.2 rmind (EFIAPI *EFI_SIMPLE_NETWORK_STATION_ADDRESS) (
235 1.1.1.1.4.2 rmind IN struct _EFI_SIMPLE_NETWORK *This,
236 1.1.1.1.4.2 rmind IN BOOLEAN Reset,
237 1.1.1.1.4.2 rmind IN EFI_MAC_ADDRESS *New OPTIONAL
238 1.1.1.1.4.2 rmind );
239 1.1.1.1.4.2 rmind
240 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
241 1.1.1.1.4.2 rmind //
242 1.1.1.1.4.2 rmind
243 1.1.1.1.4.2 rmind typedef
244 1.1.1.1.4.2 rmind EFI_STATUS
245 1.1.1.1.4.2 rmind (EFIAPI *EFI_SIMPLE_NETWORK_STATISTICS) (
246 1.1.1.1.4.2 rmind IN struct _EFI_SIMPLE_NETWORK *This,
247 1.1.1.1.4.2 rmind IN BOOLEAN Reset,
248 1.1.1.1.4.2 rmind IN OUT UINTN *StatisticsSize OPTIONAL,
249 1.1.1.1.4.2 rmind OUT EFI_NETWORK_STATISTICS *StatisticsTable OPTIONAL
250 1.1.1.1.4.2 rmind );
251 1.1.1.1.4.2 rmind
252 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
253 1.1.1.1.4.2 rmind //
254 1.1.1.1.4.2 rmind
255 1.1.1.1.4.2 rmind typedef
256 1.1.1.1.4.2 rmind EFI_STATUS
257 1.1.1.1.4.2 rmind (EFIAPI *EFI_SIMPLE_NETWORK_MCAST_IP_TO_MAC) (
258 1.1.1.1.4.2 rmind IN struct _EFI_SIMPLE_NETWORK *This,
259 1.1.1.1.4.2 rmind IN BOOLEAN IPv6,
260 1.1.1.1.4.2 rmind IN EFI_IP_ADDRESS *IP,
261 1.1.1.1.4.2 rmind OUT EFI_MAC_ADDRESS *MAC
262 1.1.1.1.4.2 rmind );
263 1.1.1.1.4.2 rmind
264 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
265 1.1.1.1.4.2 rmind //
266 1.1.1.1.4.2 rmind
267 1.1.1.1.4.2 rmind typedef
268 1.1.1.1.4.2 rmind EFI_STATUS
269 1.1.1.1.4.2 rmind (EFIAPI *EFI_SIMPLE_NETWORK_NVDATA) (
270 1.1.1.1.4.2 rmind IN struct _EFI_SIMPLE_NETWORK *This,
271 1.1.1.1.4.2 rmind IN BOOLEAN ReadWrite,
272 1.1.1.1.4.2 rmind IN UINTN Offset,
273 1.1.1.1.4.2 rmind IN UINTN BufferSize,
274 1.1.1.1.4.2 rmind IN OUT VOID *Buffer
275 1.1.1.1.4.2 rmind );
276 1.1.1.1.4.2 rmind
277 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
278 1.1.1.1.4.2 rmind //
279 1.1.1.1.4.2 rmind
280 1.1.1.1.4.2 rmind typedef
281 1.1.1.1.4.2 rmind EFI_STATUS
282 1.1.1.1.4.2 rmind (EFIAPI *EFI_SIMPLE_NETWORK_GET_STATUS) (
283 1.1.1.1.4.2 rmind IN struct _EFI_SIMPLE_NETWORK *This,
284 1.1.1.1.4.2 rmind OUT UINT32 *InterruptStatus OPTIONAL,
285 1.1.1.1.4.2 rmind OUT VOID **TxBuf OPTIONAL
286 1.1.1.1.4.2 rmind );
287 1.1.1.1.4.2 rmind
288 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
289 1.1.1.1.4.2 rmind //
290 1.1.1.1.4.2 rmind
291 1.1.1.1.4.2 rmind typedef
292 1.1.1.1.4.2 rmind EFI_STATUS
293 1.1.1.1.4.2 rmind (EFIAPI *EFI_SIMPLE_NETWORK_TRANSMIT) (
294 1.1.1.1.4.2 rmind IN struct _EFI_SIMPLE_NETWORK *This,
295 1.1.1.1.4.2 rmind IN UINTN HeaderSize,
296 1.1.1.1.4.2 rmind IN UINTN BufferSize,
297 1.1.1.1.4.2 rmind IN VOID *Buffer,
298 1.1.1.1.4.2 rmind IN EFI_MAC_ADDRESS *SrcAddr OPTIONAL,
299 1.1.1.1.4.2 rmind IN EFI_MAC_ADDRESS *DestAddr OPTIONAL,
300 1.1.1.1.4.2 rmind IN UINT16 *Protocol OPTIONAL
301 1.1.1.1.4.2 rmind );
302 1.1.1.1.4.2 rmind
303 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
304 1.1.1.1.4.2 rmind //
305 1.1.1.1.4.2 rmind
306 1.1.1.1.4.2 rmind typedef
307 1.1.1.1.4.2 rmind EFI_STATUS
308 1.1.1.1.4.2 rmind (EFIAPI *EFI_SIMPLE_NETWORK_RECEIVE) (
309 1.1.1.1.4.2 rmind IN struct _EFI_SIMPLE_NETWORK *This,
310 1.1.1.1.4.2 rmind OUT UINTN *HeaderSize OPTIONAL,
311 1.1.1.1.4.2 rmind IN OUT UINTN *BufferSize,
312 1.1.1.1.4.2 rmind OUT VOID *Buffer,
313 1.1.1.1.4.2 rmind OUT EFI_MAC_ADDRESS *SrcAddr OPTIONAL,
314 1.1.1.1.4.2 rmind OUT EFI_MAC_ADDRESS *DestAddr OPTIONAL,
315 1.1.1.1.4.2 rmind OUT UINT16 *Protocol OPTIONAL
316 1.1.1.1.4.2 rmind );
317 1.1.1.1.4.2 rmind
318 1.1.1.1.4.2 rmind ///////////////////////////////////////////////////////////////////////////////
319 1.1.1.1.4.2 rmind //
320 1.1.1.1.4.2 rmind
321 1.1.1.1.4.2 rmind #define EFI_SIMPLE_NETWORK_INTERFACE_REVISION 0x00010000
322 1.1.1.1.4.2 rmind
323 1.1.1.1.4.2 rmind typedef struct _EFI_SIMPLE_NETWORK {
324 1.1.1.1.4.2 rmind UINT64 Revision;
325 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_START Start;
326 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_STOP Stop;
327 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_INITIALIZE Initialize;
328 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_RESET Reset;
329 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_SHUTDOWN Shutdown;
330 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_RECEIVE_FILTERS ReceiveFilters;
331 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_STATION_ADDRESS StationAddress;
332 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_STATISTICS Statistics;
333 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_MCAST_IP_TO_MAC MCastIpToMac;
334 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_NVDATA NvData;
335 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_GET_STATUS GetStatus;
336 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_TRANSMIT Transmit;
337 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_RECEIVE Receive;
338 1.1.1.1.4.2 rmind EFI_EVENT WaitForPacket;
339 1.1.1.1.4.2 rmind EFI_SIMPLE_NETWORK_MODE *Mode;
340 1.1.1.1.4.2 rmind } EFI_SIMPLE_NETWORK;
341 1.1.1.1.4.2 rmind
342 1.1.1.1.4.2 rmind #endif /* _EFINET_H */
343