| 
    NetworkPkg[all]
    0.98
    
   | 
 
Data Structures | |
| struct | TCP4_IO_CONFIG_DATA | 
| struct | TCP6_IO_CONFIG_DATA | 
| union | TCP_IO_CONFIG_DATA | 
| union | TCP_IO_PROTOCOL | 
| union | TCP_IO_CONNECTION_TOKEN | 
| union | TCP_IO_IO_TOKEN | 
| union | TCP_IO_CLOSE_TOKEN | 
| union | TCP_IO_LISTEN_TOKEN | 
| struct | TCP_IO | 
Macros | |
| #define | TCP_VERSION_4 IP_VERSION_4 | 
| #define | TCP_VERSION_6 IP_VERSION_6 | 
| #define | TCP_GET_MAPPING_TIMEOUT 100000000U | 
Functions | |
| EFI_STATUS EFIAPI | TcpIoCreateSocket (IN EFI_HANDLE Image, IN EFI_HANDLE Controller, IN UINT8 TcpVersion, IN TCP_IO_CONFIG_DATA *ConfigData, OUT TCP_IO *TcpIo) | 
| VOID EFIAPI | TcpIoDestroySocket (IN TCP_IO *TcpIo) | 
| EFI_STATUS EFIAPI | TcpIoConnect (IN OUT TCP_IO *TcpIo, IN EFI_EVENT Timeout) | 
| EFI_STATUS EFIAPI | TcpIoAccept (IN OUT TCP_IO *TcpIo, IN EFI_EVENT Timeout) | 
| VOID EFIAPI | TcpIoReset (IN OUT TCP_IO *TcpIo) | 
| EFI_STATUS EFIAPI | TcpIoTransmit (IN TCP_IO *TcpIo, IN NET_BUF *Packet) | 
| EFI_STATUS EFIAPI | TcpIoReceive (IN OUT TCP_IO *TcpIo, IN NET_BUF *Packet, IN BOOLEAN AsyncMode, IN EFI_EVENT Timeout) | 
This library is used to share code between UEFI network stack modules. It provides the helper routines to access TCP service.
Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.
 SPDX-License-Identifier: BSD-2-Clause-Patent 
| #define TCP_GET_MAPPING_TIMEOUT 100000000U | 
10 seconds
| #define TCP_VERSION_4 IP_VERSION_4 | 
| #define TCP_VERSION_6 IP_VERSION_6 | 
| EFI_STATUS EFIAPI TcpIoAccept | ( | IN OUT TCP_IO * | TcpIo, | 
| IN EFI_EVENT | Timeout | ||
| ) | 
Accept the incomding request from the other endpoint of the TCP socket.
| [in,out] | TcpIo | The TcpIo wrapping the TCP socket. | 
| [in] | Timeout | The time to wait for connection done. Set to NULL for infinite wait. | 
| EFI_SUCCESS | Connect to the other endpoint of the TCP socket successfully. | 
| EFI_INVALID_PARAMETER | One or more parameters are invalid. | 
| EFI_UNSUPPORTED | One or more of the control options are not supported in the implementation. | 
| EFI_TIMEOUT | Failed to connect to the other endpoint of the TCP socket in the specified time period. | 
| Others | Other errors as indicated. | 
| EFI_STATUS EFIAPI TcpIoConnect | ( | IN OUT TCP_IO * | TcpIo, | 
| IN EFI_EVENT | Timeout | ||
| ) | 
Connect to the other endpoint of the TCP socket.
| [in,out] | TcpIo | The TcpIo wrapping the TCP socket. | 
| [in] | Timeout | The time to wait for connection done. Set to NULL for infinite wait. | 
| EFI_SUCCESS | Connect to the other endpoint of the TCP socket successfully. | 
| EFI_TIMEOUT | Failed to connect to the other endpoint of the TCP socket in the specified time period. | 
| EFI_INVALID_PARAMETER | One or more parameters are invalid. | 
| EFI_UNSUPPORTED | One or more of the control options are not supported in the implementation. | 
| Others | Other errors as indicated. | 
| EFI_STATUS EFIAPI TcpIoCreateSocket | ( | IN EFI_HANDLE | Image, | 
| IN EFI_HANDLE | Controller, | ||
| IN UINT8 | TcpVersion, | ||
| IN TCP_IO_CONFIG_DATA * | ConfigData, | ||
| OUT TCP_IO * | TcpIo | ||
| ) | 
Create a TCP socket with the specified configuration data.
| [in] | Image | The handle of the driver image. | 
| [in] | Controller | The handle of the controller. | 
| [in] | TcpVersion | The version of Tcp, TCP_VERSION_4 or TCP_VERSION_6. | 
| [in] | ConfigData | The Tcp configuration data. | 
| [out] | TcpIo | The TcpIo. | 
| EFI_SUCCESS | The TCP socket is created and configured. | 
| EFI_INVALID_PARAMETER | One or more parameters are invalid. | 
| EFI_UNSUPPORTED | One or more of the control options are not supported in the implementation. | 
| EFI_OUT_OF_RESOURCES | Failed to allocate memory. | 
| Others | Failed to create the TCP socket or configure it. | 
Destroy the socket.
| [in] | TcpIo | The TcpIo which wraps the socket to be destroyed. | 
| EFI_STATUS EFIAPI TcpIoReceive | ( | IN OUT TCP_IO * | TcpIo, | 
| IN NET_BUF * | Packet, | ||
| IN BOOLEAN | AsyncMode, | ||
| IN EFI_EVENT | Timeout | ||
| ) | 
Receive data from the socket.
| [in,out] | TcpIo | The TcpIo which wraps the socket to be destroyed. | 
| [in] | Packet | The buffer to hold the data copy from the socket rx buffer. | 
| [in] | AsyncMode | Is this receive asynchronous or not. | 
| [in] | Timeout | The time to wait for receiving the amount of data the Packet can hold. Set to NULL for infinite wait. | 
| EFI_SUCCESS | The required amount of data is received from the socket. | 
| EFI_INVALID_PARAMETER | One or more parameters are invalid. | 
| EFI_DEVICE_ERROR | An unexpected network or system error occurred. | 
| EFI_OUT_OF_RESOURCES | Failed to allocate memory. | 
| EFI_TIMEOUT | Failed to receive the required amount of data in the specified time period. | 
| Others | Other errors as indicated. | 
Reset the socket.
| [in,out] | TcpIo | The TcpIo wrapping the TCP socket. | 
| EFI_STATUS EFIAPI TcpIoTransmit | ( | IN TCP_IO * | TcpIo, | 
| IN NET_BUF * | Packet | ||
| ) | 
Transmit the Packet to the other endpoint of the socket.
| [in] | TcpIo | The TcpIo wrapping the TCP socket. | 
| [in] | Packet | The packet to transmit. | 
| EFI_SUCCESS | The packet is transmitted. | 
| EFI_INVALID_PARAMETER | One or more parameters are invalid. | 
| EFI_UNSUPPORTED | One or more of the control options are not supported in the implementation. | 
| EFI_OUT_OF_RESOURCES | Failed to allocate memory. | 
| EFI_DEVICE_ERROR | An unexpected network or system error occurred. | 
| Others | Other errors as indicated. |