]>
git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/UefiPxeBcDxe/PxeBcMtftp.h
2 Functions declaration related with Mtftp for UefiPxeBc Driver.
4 Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
10 #ifndef __EFI_PXEBC_MTFTP_H__
11 #define __EFI_PXEBC_MTFTP_H__
13 #define PXE_MTFTP_OPTION_BLKSIZE_INDEX 0
14 #define PXE_MTFTP_OPTION_TIMEOUT_INDEX 1
15 #define PXE_MTFTP_OPTION_TSIZE_INDEX 2
16 #define PXE_MTFTP_OPTION_MULTICAST_INDEX 3
17 #define PXE_MTFTP_OPTION_WINDOWSIZE_INDEX 4
18 #define PXE_MTFTP_OPTION_MAXIMUM_INDEX 5
19 #define PXE_MTFTP_OPTBUF_MAXNUM_INDEX 128
21 #define PXE_MTFTP_ERROR_STRING_LENGTH 127 // refer to definition of struct EFI_PXE_BASE_CODE_TFTP_ERROR.
22 #define PXE_MTFTP_DEFAULT_BLOCK_SIZE 512 // refer to rfc-1350.
26 This function is wrapper to get the file size using TFTP.
28 @param[in] Private Pointer to PxeBc private data.
29 @param[in] Config Pointer to configure data.
30 @param[in] Filename Pointer to boot file name.
31 @param[in] BlockSize Pointer to required block size.
32 @param[in] WindowSize Pointer to required window size.
33 @param[in, out] BufferSize Pointer to buffer size.
35 @retval EFI_SUCCESS Successfully obtained the size of file.
36 @retval EFI_NOT_FOUND Parse the tftp options failed.
37 @retval EFI_DEVICE_ERROR The network device encountered an error during this operation.
38 @retval Others Did not obtain the size of the file.
42 PxeBcTftpGetFileSize (
43 IN PXEBC_PRIVATE_DATA
*Private
,
48 IN OUT UINT64
*BufferSize
53 This function is a wrapper to get a file using TFTP.
55 @param[in] Private Pointer to PxeBc private data.
56 @param[in] Config Pointer to config data.
57 @param[in] Filename Pointer to boot file name.
58 @param[in] BlockSize Pointer to required block size.
59 @param[in] WindowSize Pointer to required window size.
60 @param[in] BufferPtr Pointer to buffer.
61 @param[in, out] BufferSize Pointer to buffer size.
62 @param[in] DontUseBuffer Indicates whether to use a receive buffer.
64 @retval EFI_SUCCESS Successfully read the data from the special file.
65 @retval EFI_DEVICE_ERROR The network device encountered an error during this operation.
66 @retval Others Read data from file failed.
71 IN PXEBC_PRIVATE_DATA
*Private
,
77 IN OUT UINT64
*BufferSize
,
78 IN BOOLEAN DontUseBuffer
83 This function is a wrapper to put file with TFTP.
85 @param[in] Private Pointer to PxeBc private data.
86 @param[in] Config Pointer to config data.
87 @param[in] Filename Pointer to boot file name.
88 @param[in] Overwrite Indicates whether to use an overwrite attribute.
89 @param[in] BlockSize Pointer to required block size.
90 @param[in] BufferPtr Pointer to buffer.
91 @param[in, out] BufferSize Pointer to buffer size.
93 @retval EFI_SUCCESS Successfully wrote the data into the special file.
94 @retval EFI_DEVICE_ERROR The network device encountered an error during this operation.
95 @retval other Write data into file failed.
100 IN PXEBC_PRIVATE_DATA
*Private
,
103 IN BOOLEAN Overwrite
,
106 IN OUT UINT64
*BufferSize
111 This function is a wrapper to get the data (file) from a directory using TFTP.
113 @param[in] Private Pointer to PxeBc private data.
114 @param[in] Config Pointer to config data.
115 @param[in] Filename Pointer to boot file name.
116 @param[in] BlockSize Pointer to required block size.
117 @param[in] WindowSize Pointer to required window size.
118 @param[in] BufferPtr Pointer to buffer.
119 @param[in, out] BufferSize Pointer to buffer size.
120 @param[in] DontUseBuffer Indicates whether with a receive buffer.
122 @retval EFI_SUCCESS Successfully obtained the data from the file included in directory.
123 @retval EFI_DEVICE_ERROR The network device encountered an error during this operation.
124 @retval Others Operation failed.
128 PxeBcTftpReadDirectory (
129 IN PXEBC_PRIVATE_DATA
*Private
,
133 IN UINTN
*WindowSize
,
135 IN OUT UINT64
*BufferSize
,
136 IN BOOLEAN DontUseBuffer