]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Protocol/Mtftp4.h
04095acffb156dd9dacdea287bef73d701ec73bb
[mirror_edk2.git] / MdePkg / Include / Protocol / Mtftp4.h
1 /** @file
2 EFI Multicast Trivial File Tranfer Protocol Definition
3
4 Copyright (c) 2006 - 2009, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 @par Revision Reference:
14 This Protocol is introduced in UEFI Specification 2.0
15
16 **/
17
18 #ifndef __EFI_MTFTP4_PROTOCOL_H__
19 #define __EFI_MTFTP4_PROTOCOL_H__
20
21 #define EFI_MTFTP4_SERVICE_BINDING_PROTOCOL_GUID \
22 { \
23 0x2FE800BE, 0x8F01, 0x4aa6, {0x94, 0x6B, 0xD7, 0x13, 0x88, 0xE1, 0x83, 0x3F } \
24 }
25
26 #define EFI_MTFTP4_PROTOCOL_GUID \
27 { \
28 0x78247c57, 0x63db, 0x4708, {0x99, 0xc2, 0xa8, 0xb4, 0xa9, 0xa6, 0x1f, 0x6b } \
29 }
30
31 typedef struct _EFI_MTFTP4_PROTOCOL EFI_MTFTP4_PROTOCOL;
32 typedef struct _EFI_MTFTP4_TOKEN EFI_MTFTP4_TOKEN;
33
34 //
35 //MTFTP4 packet opcode definition
36 //
37 #define EFI_MTFTP4_OPCODE_RRQ 1
38 #define EFI_MTFTP4_OPCODE_WRQ 2
39 #define EFI_MTFTP4_OPCODE_DATA 3
40 #define EFI_MTFTP4_OPCODE_ACK 4
41 #define EFI_MTFTP4_OPCODE_ERROR 5
42 #define EFI_MTFTP4_OPCODE_OACK 6
43 #define EFI_MTFTP4_OPCODE_DIR 7
44 #define EFI_MTFTP4_OPCODE_DATA8 8
45 #define EFI_MTFTP4_OPCODE_ACK8 9
46
47 //
48 // MTFTP4 error code definition
49 //
50 #define EFI_MTFTP4_ERRORCODE_NOT_DEFINED 0
51 #define EFI_MTFTP4_ERRORCODE_FILE_NOT_FOUND 1
52 #define EFI_MTFTP4_ERRORCODE_ACCESS_VIOLATION 2
53 #define EFI_MTFTP4_ERRORCODE_DISK_FULL 3
54 #define EFI_MTFTP4_ERRORCODE_ILLEGAL_OPERATION 4
55 #define EFI_MTFTP4_ERRORCODE_UNKNOWN_TRANSFER_ID 5
56 #define EFI_MTFTP4_ERRORCODE_FILE_ALREADY_EXISTS 6
57 #define EFI_MTFTP4_ERRORCODE_NO_SUCH_USER 7
58 #define EFI_MTFTP4_ERRORCODE_REQUEST_DENIED 8
59
60 //
61 // MTFTP4 pacekt definitions
62 //
63 #pragma pack(1)
64
65 typedef struct {
66 UINT16 OpCode;
67 UINT8 Filename[1];
68 } EFI_MTFTP4_REQ_HEADER;
69
70 typedef struct {
71 UINT16 OpCode;
72 UINT8 Data[1];
73 } EFI_MTFTP4_OACK_HEADER;
74
75 typedef struct {
76 UINT16 OpCode;
77 UINT16 Block;
78 UINT8 Data[1];
79 } EFI_MTFTP4_DATA_HEADER;
80
81 typedef struct {
82 UINT16 OpCode;
83 UINT16 Block[1];
84 } EFI_MTFTP4_ACK_HEADER;
85
86 typedef struct {
87 UINT16 OpCode;
88 UINT64 Block;
89 UINT8 Data[1];
90 } EFI_MTFTP4_DATA8_HEADER;
91
92 typedef struct {
93 UINT16 OpCode;
94 UINT64 Block[1];
95 } EFI_MTFTP4_ACK8_HEADER;
96
97 typedef struct {
98 UINT16 OpCode;
99 UINT16 ErrorCode;
100 UINT8 ErrorMessage[1];
101 } EFI_MTFTP4_ERROR_HEADER;
102
103 typedef union {
104 ///
105 /// Type of packets as defined by the MTFTPv4 packet opcodes.
106 ///
107 UINT16 OpCode;
108 ///
109 /// Read request packet header.
110 ///
111 EFI_MTFTP4_REQ_HEADER Rrq;
112 ///
113 /// Write request packet header.
114 ///
115 EFI_MTFTP4_REQ_HEADER Wrq;
116 ///
117 /// Option acknowledge packet header.
118 ///
119 EFI_MTFTP4_OACK_HEADER Oack;
120 ///
121 /// Data packet header.
122 ///
123 EFI_MTFTP4_DATA_HEADER Data;
124 ///
125 /// Acknowledgement packet header.
126 ///
127 EFI_MTFTP4_ACK_HEADER Ack;
128 ///
129 /// Data packet header with big block number.
130 ///
131 EFI_MTFTP4_DATA8_HEADER Data8;
132 ///
133 /// Acknowledgement header with big block num.
134 ///
135 EFI_MTFTP4_ACK8_HEADER Ack8;
136 ///
137 /// Error packet header.
138 ///
139 EFI_MTFTP4_ERROR_HEADER Error;
140 } EFI_MTFTP4_PACKET;
141
142 #pragma pack()
143
144 ///
145 /// MTFTP4 option definition
146 ///
147 typedef struct {
148 UINT8 *OptionStr;
149 UINT8 *ValueStr;
150 } EFI_MTFTP4_OPTION;
151
152
153 typedef struct {
154 BOOLEAN UseDefaultSetting;
155 EFI_IPv4_ADDRESS StationIp;
156 EFI_IPv4_ADDRESS SubnetMask;
157 UINT16 LocalPort;
158 EFI_IPv4_ADDRESS GatewayIp;
159 EFI_IPv4_ADDRESS ServerIp;
160 UINT16 InitialServerPort;
161 UINT16 TryCount;
162 UINT16 TimeoutValue;
163 } EFI_MTFTP4_CONFIG_DATA;
164
165
166 typedef struct {
167 EFI_MTFTP4_CONFIG_DATA ConfigData;
168 UINT8 SupportedOptionCount;
169 UINT8 **SupportedOptoins;
170 UINT8 UnsupportedOptionCount;
171 UINT8 **UnsupportedOptoins;
172 } EFI_MTFTP4_MODE_DATA;
173
174
175 typedef struct {
176 EFI_IPv4_ADDRESS GatewayIp;
177 EFI_IPv4_ADDRESS ServerIp;
178 UINT16 ServerPort;
179 UINT16 TryCount;
180 UINT16 TimeoutValue;
181 } EFI_MTFTP4_OVERRIDE_DATA;
182
183 //
184 // Protocol interfaces definition
185 //
186
187 /**
188 A callback function that is provided by the caller to intercept
189 the EFI_MTFTP4_OPCODE_DATA or EFI_MTFTP4_OPCODE_DATA8 packets processed in the
190 EFI_MTFTP4_PROTOCOL.ReadFile() function, and alternatively to intercept
191 EFI_MTFTP4_OPCODE_OACK or EFI_MTFTP4_OPCODE_ERROR packets during a call to
192 EFI_MTFTP4_PROTOCOL.ReadFile(), WriteFile() or ReadDirectory().
193
194 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.
195 @param Token The token that the caller provided in the
196 EFI_MTFTP4_PROTOCOL.ReadFile(), WriteFile()
197 or ReadDirectory() function.
198 @param PacketLen Indicates the length of the packet.
199 @param Packet Pointer to an MTFTPv4 packet.
200
201 @retval EFI_SUCCESS Operation sucess
202 @retval Others Abort transfer process
203
204 **/
205 typedef
206 EFI_STATUS
207 (EFIAPI *EFI_MTFTP4_CHECK_PACKET)(
208 IN EFI_MTFTP4_PROTOCOL *This,
209 IN EFI_MTFTP4_TOKEN *Token,
210 IN UINT16 PacketLen,
211 IN EFI_MTFTP4_PACKET *Paket
212 );
213
214 /**
215 Timeout callback funtion.
216
217 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.
218 @param Token The token that is provided in the
219 EFI_MTFTP4_PROTOCOL.ReadFile() or
220 EFI_MTFTP4_PROTOCOL.WriteFile() or
221 EFI_MTFTP4_PROTOCOL.ReadDirectory() functions
222 by the caller.
223
224 @retval EFI_SUCCESS Operation sucess
225 @retval Others Aborts download process.
226
227 **/
228 typedef
229 EFI_STATUS
230 (EFIAPI *EFI_MTFTP4_TIMEOUT_CALLBACK)(
231 IN EFI_MTFTP4_PROTOCOL *This,
232 IN EFI_MTFTP4_TOKEN *Token
233 );
234
235 /**
236 A callback function that the caller provides to feed data to the
237 EFI_MTFTP4_PROTOCOL.WriteFile() function.
238
239 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.
240 @param Token The token provided in the
241 EFI_MTFTP4_PROTOCOL.WriteFile() by the caller.
242 @param Length Indicates the length of the raw data wanted on input, and the
243 length the data available on output.
244 @param Buffer Pointer to the buffer where the data is stored.
245
246 @retval EFI_SUCCESS Operation sucess
247 @retval Others Aborts session.
248
249 **/
250 typedef
251 EFI_STATUS
252 (EFIAPI *EFI_MTFTP4_PACKET_NEEDED)(
253 IN EFI_MTFTP4_PROTOCOL *This,
254 IN EFI_MTFTP4_TOKEN *Token,
255 IN OUT UINT16 *Length,
256 OUT VOID **Buffer
257 );
258
259
260 /**
261 Submits an asynchronous interrupt transfer to an interrupt endpoint of a USB device.
262
263 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.
264 @param ModeData Pointer to storage for the EFI MTFTPv4 Protocol driver mode data.
265
266 @retval EFI_SUCCESS The configuration data was successfully returned.
267 @retval EFI_OUT_OF_RESOURCES The required mode data could not be allocated.
268 @retval EFI_INVALID_PARAMETER This is NULL or ModeData is NULL.
269
270 **/
271 typedef
272 EFI_STATUS
273 (EFIAPI *EFI_MTFTP4_GET_MODE_DATA)(
274 IN EFI_MTFTP4_PROTOCOL *This,
275 OUT EFI_MTFTP4_MODE_DATA *ModeData
276 );
277
278
279 /**
280 Initializes, changes, or resets the default operational setting for this
281 EFI MTFTPv4 Protocol driver instance.
282
283 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.
284 @param MtftpConfigData Pointer to the configuration data structure.
285
286 @retval EFI_SUCCESS The EFI MTFTPv4 Protocol driver was configured successfully.
287 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.
288 @retval EFI_ACCESS_DENIED The EFI configuration could not be changed at this time because
289 there is one MTFTP background operation in progress.
290 @retval EFI_NO_MAPPING When using a default address, configuration (DHCP, BOOTP,
291 RARP, etc.) has not finished yet.
292 @retval EFI_UNSUPPORTED A configuration protocol (DHCP, BOOTP, RARP, etc.) could not
293 be located when clients choose to use the default address
294 settings.
295 @retval EFI_OUT_OF_RESOURCES The EFI MTFTPv4 Protocol driver instance data could not be
296 allocated.
297 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred. The EFI
298 MTFTPv4 Protocol driver instance is not configured.
299
300 **/
301 typedef
302 EFI_STATUS
303 (EFIAPI *EFI_MTFTP4_CONFIGURE)(
304 IN EFI_MTFTP4_PROTOCOL *This,
305 IN EFI_MTFTP4_CONFIG_DATA *MtftpConfigData OPTIONAL
306 );
307
308
309 /**
310 Gets information about a file from an MTFTPv4 server.
311
312 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.
313 @param OverrideData Data that is used to override the existing parameters. If NULL,
314 the default parameters that were set in the
315 EFI_MTFTP4_PROTOCOL.Configure() function are used.
316 @param Filename Pointer to ASCIIZ file name string.
317 @param ModeStr Pointer to ASCIIZ mode string. If NULL, "octet" will be used.
318 @param OptionCount Number of option/value string pairs in OptionList.
319 @param OptionList Pointer to array of option/value string pairs. Ignored if
320 OptionCount is zero.
321 @param PacketLength The number of bytes in the returned packet.
322 @param Packet The pointer to the received packet. This buffer must be freed by
323 the caller.
324
325 @retval EFI_SUCCESS An MTFTPv4 OACK packet was received and is in the Packet.
326 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
327 - This is NULL.
328 - Filename is NULL.
329 - OptionCount is not zero and OptionList is NULL.
330 - One or more options in OptionList have wrong format.
331 - PacketLength is NULL.
332 - One or more IPv4 addresses in OverrideData are not valid
333 unicast IPv4 addresses if OverrideData is not NULL.
334 @retval EFI_UNSUPPORTED One or more options in the OptionList are in the
335 unsupported list of structure EFI_MTFTP4_MODE_DATA.
336 @retval EFI_NOT_STARTED The EFI MTFTPv4 Protocol driver has not been started.
337 @retval EFI_NO_MAPPING When using a default address, configuration (DHCP, BOOTP,
338 RARP, etc.) has not finished yet.
339 @retval EFI_ACCESS_DENIED The previous operation has not completed yet.
340 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.
341 @retval EFI_TFTP_ERROR An MTFTPv4 ERROR packet was received and is in the Packet.
342 @retval EFI_NETWORK_UNREACHABLE An ICMP network unreachable error packet was received and the Packet is set to NULL.
343 @retval EFI_HOST_UNREACHABLE An ICMP host unreachable error packet was received and the Packet is set to NULL.
344 @retval EFI_PROTOCOL_UNREACHABLE An ICMP protocol unreachable error packet was received and the Packet is set to NULL.
345 @retval EFI_PORT_UNREACHABLE An ICMP port unreachable error packet was received and the Packet is set to NULL.
346 @retval EFI_ICMP_ERROR Some other ICMP ERROR packet was received and is in the Buffer.
347 @retval EFI_PROTOCOL_ERROR An unexpected MTFTPv4 packet was received and is in the Packet.
348 @retval EFI_TIMEOUT No responses were received from the MTFTPv4 server.
349 @retval EFI_DEVICE_ERROR An unexpected network error or system error occurred.
350
351 **/
352 typedef
353 EFI_STATUS
354 (EFIAPI *EFI_MTFTP4_GET_INFO)(
355 IN EFI_MTFTP4_PROTOCOL *This,
356 IN EFI_MTFTP4_OVERRIDE_DATA *OverrideData OPTIONAL,
357 IN UINT8 *Filename,
358 IN UINT8 *ModeStr OPTIONAL,
359 IN UINT8 OptionCount,
360 IN EFI_MTFTP4_OPTION *OptionList,
361 OUT UINT32 *PacketLength,
362 OUT EFI_MTFTP4_PACKET **Packet OPTIONAL
363 );
364
365 /**
366 Parses the options in an MTFTPv4 OACK packet.
367
368 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.
369 @param PacketLen Length of the OACK packet to be parsed.
370 @param Packet Pointer to the OACK packet to be parsed.
371 @param OptionCount Pointer to the number of options in following OptionList.
372 @param OptionList Pointer to EFI_MTFTP4_OPTION storage. Call the EFI Boot
373 Service FreePool() to release the OptionList if the options
374 in this OptionList are not needed any more.
375
376 @retval EFI_SUCCESS The OACK packet was valid and the OptionCount and
377 OptionList parameters have been updated.
378 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
379 - PacketLen is 0.
380 - Packet is NULL or Packet is not a valid MTFTPv4 packet.
381 - OptionCount is NULL.
382 @retval EFI_NOT_FOUND No options were found in the OACK packet.
383 @retval EFI_OUT_OF_RESOURCES Storage for the OptionList array cannot be allocated.
384 @retval EFI_PROTOCOL_ERROR One or more of the option fields is invalid.
385
386 **/
387 typedef
388 EFI_STATUS
389 (EFIAPI *EFI_MTFTP4_PARSE_OPTIONS)(
390 IN EFI_MTFTP4_PROTOCOL *This,
391 IN UINT32 PacketLen,
392 IN EFI_MTFTP4_PACKET *Packet,
393 OUT UINT32 *OptionCount,
394 OUT EFI_MTFTP4_OPTION **OptionList OPTIONAL
395 );
396
397
398 /**
399 Downloads a file from an MTFTPv4 server.
400
401 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.
402 @param Token Pointer to the token structure to provide the parameters that are
403 used in this operation.
404
405 @retval EFI_SUCCESS The data file has been transferred successfully.
406 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.
407 @retval EFI_BUFFER_TOO_SMALL BufferSize is not zero but not large enough to hold the
408 downloaded data in downloading process.
409 @retval EFI_ABORTED Current operation is aborted by user.
410 @retval EFI_NETWORK_UNREACHABLE An ICMP network unreachable error packet was received.
411 @retval EFI_HOST_UNREACHABLE An ICMP host unreachable error packet was received.
412 @retval EFI_PROTOCOL_UNREACHABLE An ICMP protocol unreachable error packet was received.
413 @retval EFI_PORT_UNREACHABLE An ICMP port unreachable error packet was received.
414 @retval EFI_ICMP_ERROR Some other ICMP ERROR packet was received.
415 @retval EFI_TIMEOUT No responses were received from the MTFTPv4 server.
416 @retval EFI_TFTP_ERROR An MTFTPv4 ERROR packet was received.
417 @retval EFI_DEVICE_ERROR An unexpected network error or system error occurred.
418
419 **/
420 typedef
421 EFI_STATUS
422 (EFIAPI *EFI_MTFTP4_READ_FILE)(
423 IN EFI_MTFTP4_PROTOCOL *This,
424 IN EFI_MTFTP4_TOKEN *Token
425 );
426
427
428
429 /**
430 Sends a file to an MTFTPv4 server.
431
432 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.
433 @param Token Pointer to the token structure to provide the parameters that are
434 used in this operation.
435
436 @retval EFI_SUCCESS The upload session has started.
437 @retval EFI_UNSUPPORTED The operation is not supported by this implementation.
438 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.
439 @retval EFI_UNSUPPORTED One or more options in the Token.OptionList are in
440 the unsupported list of structure EFI_MTFTP4_MODE_DATA.
441 @retval EFI_NOT_STARTED The EFI MTFTPv4 Protocol driver has not been started.
442 @retval EFI_NO_MAPPING When using a default address, configuration (DHCP, BOOTP,
443 RARP, etc.) is not finished yet.
444 @retval EFI_ALREADY_STARTED This Token is already being used in another MTFTPv4 session.
445 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.
446 @retval EFI_ACCESS_DENIED The previous operation has not completed yet.
447 @retval EFI_DEVICE_ERROR An unexpected network error or system error occurred.
448
449 **/
450 typedef
451 EFI_STATUS
452 (EFIAPI *EFI_MTFTP4_WRITE_FILE)(
453 IN EFI_MTFTP4_PROTOCOL *This,
454 IN EFI_MTFTP4_TOKEN *Token
455 );
456
457
458 /**
459 Downloads a data file "directory" from an MTFTPv4 server. May be unsupported in some EFI
460 implementations.
461
462 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.
463 @param Token Pointer to the token structure to provide the parameters that are
464 used in this operation.
465
466 @retval EFI_SUCCESS The MTFTPv4 related file "directory" has been downloaded.
467 @retval EFI_UNSUPPORTED The operation is not supported by this implementation.
468 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.
469 @retval EFI_UNSUPPORTED One or more options in the Token.OptionList are in
470 the unsupported list of structure EFI_MTFTP4_MODE_DATA.
471 @retval EFI_NOT_STARTED The EFI MTFTPv4 Protocol driver has not been started.
472 @retval EFI_NO_MAPPING When using a default address, configuration (DHCP, BOOTP,
473 RARP, etc.) is not finished yet.
474 @retval EFI_ALREADY_STARTED This Token is already being used in another MTFTPv4 session.
475 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.
476 @retval EFI_ACCESS_DENIED The previous operation has not completed yet.
477 @retval EFI_DEVICE_ERROR An unexpected network error or system error occurred.
478
479 **/
480 typedef
481 EFI_STATUS
482 (EFIAPI *EFI_MTFTP4_READ_DIRECTORY)(
483 IN EFI_MTFTP4_PROTOCOL *This,
484 IN EFI_MTFTP4_TOKEN *Token
485 );
486
487 /**
488 Polls for incoming data packets and processes outgoing data packets.
489
490 @param This Pointer to the EFI_MTFTP4_PROTOCOL instance.
491
492 @retval EFI_SUCCESS Incoming or outgoing data was processed.
493 @retval EFI_NOT_STARTED This EFI MTFTPv4 Protocol instance has not been started.
494 @retval EFI_NO_MAPPING When using a default address, configuration (DHCP, BOOTP,
495 RARP, etc.) is not finished yet.
496 @retval EFI_INVALID_PARAMETER This is NULL.
497 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
498 @retval EFI_TIMEOUT Data was dropped out of the transmit and/or receive queue.
499 Consider increasing the polling rate.
500
501 **/
502 typedef
503 EFI_STATUS
504 (EFIAPI *EFI_MTFTP4_POLL)(
505 IN EFI_MTFTP4_PROTOCOL *This
506 );
507
508 ///
509 /// The EFI_MTFTP4_PROTOCOL is designed to be used by UEFI drivers and applications
510 /// to transmit and receive data files. The EFI MTFTPv4 Protocol driver uses
511 /// the underlying EFI UDPv4 Protocol driver and EFI IPv4 Protocol driver.
512 ///
513 struct _EFI_MTFTP4_PROTOCOL {
514 EFI_MTFTP4_GET_MODE_DATA GetModeData;
515 EFI_MTFTP4_CONFIGURE Configure;
516 EFI_MTFTP4_GET_INFO GetInfo;
517 EFI_MTFTP4_PARSE_OPTIONS ParseOptions;
518 EFI_MTFTP4_READ_FILE ReadFile;
519 EFI_MTFTP4_WRITE_FILE WriteFile;
520 EFI_MTFTP4_READ_DIRECTORY ReadDirectory;
521 EFI_MTFTP4_POLL Poll;
522 };
523
524 struct _EFI_MTFTP4_TOKEN {
525 ///
526 /// The status that is returned to the caller at the end of the operation
527 /// to indicate whether this operation completed successfully.
528 ///
529 EFI_STATUS Status;
530 ///
531 /// The event that will be signaled when the operation completes. If
532 /// set to NULL, the corresponding function will wait until the read or
533 /// write operation finishes. The type of Event must be
534 /// EVT_NOTIFY_SIGNAL. The Task Priority Level (TPL) of
535 /// Event must be lower than or equal to TPL_CALLBACK.
536 ///
537 EFI_EVENT Event;
538 ///
539 /// If not NULL, the data that will be used to override the existing configure data.
540 ///
541 EFI_MTFTP4_OVERRIDE_DATA *OverrideData;
542 ///
543 /// Pointer to the ASCIIZ file name string.
544 ///
545 UINT8 *Filename;
546 ///
547 /// Pointer to the ASCIIZ mode string. If NULL, "octet" is used.
548 ///
549 UINT8 *ModeStr;
550 ///
551 /// Number of option/value string pairs.
552 ///
553 UINT32 OptionCount;
554 ///
555 /// Pointer to an array of option/value string pairs. Ignored if OptionCount is zero.
556 ///
557 EFI_MTFTP4_OPTION *OptionList;
558 ///
559 /// Size of the data buffer.
560 ///
561 UINT64 BufferSize;
562 ///
563 /// Pointer to the data buffer. Data that is downloaded from the
564 /// MTFTPv4 server is stored here. Data that is uploaded to the
565 /// MTFTPv4 server is read from here. Ignored if BufferSize is zero.
566 ///
567 VOID *Buffer;
568 ///
569 /// Pointer to the context that will be used by CheckPacket,
570 /// TimeoutCallback and PacketNeeded.
571 ///
572 VOID *Context;
573 ///
574 /// Pointer to the callback function to check the contents of the received packet.
575 ///
576 EFI_MTFTP4_CHECK_PACKET CheckPacket;
577 ///
578 /// Pointer to the function to be called when a timeout occurs.
579 ///
580 EFI_MTFTP4_TIMEOUT_CALLBACK TimeoutCallback;
581 ///
582 /// Pointer to the function to provide the needed packet contents.
583 ///
584 EFI_MTFTP4_PACKET_NEEDED PacketNeeded;
585 };
586
587 extern EFI_GUID gEfiMtftp4ServiceBindingProtocolGuid;
588 extern EFI_GUID gEfiMtftp4ProtocolGuid;
589
590 #endif
591