/* * AWS IoT Device SDK for Embedded C 202211.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef PLAINTEXT_POSIX_H_ #define PLAINTEXT_POSIX_H_ /**************************************************/ /******* DO NOT CHANGE the following order ********/ /**************************************************/ /* Logging related header files are required to be included in the following order: * 1. Include the header file "logging_levels.h". * 2. Define LIBRARY_LOG_NAME and LIBRARY_LOG_LEVEL. * 3. Include the header file "logging_stack.h". */ /* Include header that defines log levels. */ #include "logging_levels.h" /* Logging configuration for the transport interface implementation which uses * Sockets. */ #ifndef LIBRARY_LOG_NAME #define LIBRARY_LOG_NAME "Transport_Plaintext_Sockets" #endif #ifndef LIBRARY_LOG_LEVEL #define LIBRARY_LOG_LEVEL LOG_DEBUG #endif #include "logging_stack.h" /************ End of logging configuration ****************/ /* *INDENT-OFF* */ #ifdef __cplusplus extern "C" { #endif /* *INDENT-ON* */ /* Transport includes. */ #include "transport_interface.h" #include "sockets_posix.h" /** * @brief Parameters for the transport-interface * implementation that uses plaintext POSIX sockets. */ typedef struct PlaintextParams { int32_t socketDescriptor; } PlaintextParams_t; /** * @brief Establish TCP connection to server. * * @param[out] pNetworkContext The output parameter to return the created network context. * @param[in] pServerInfo Server connection info. * @param[in] sendTimeout Timeout for socket send. * @param[in] recvTimeout Timeout for socket recv. * * @note A timeout of 0 means infinite timeout. * * @return #SOCKETS_SUCCESS if successful; * #SOCKETS_INVALID_PARAMETER, #SOCKETS_DNS_FAILURE, #SOCKETS_CONNECT_FAILURE on error. */ SocketStatus_t Plaintext_Connect( NetworkContext_t * pNetworkContext, const ServerInfo_t * pServerInfo, uint32_t sendTimeoutMs, uint32_t recvTimeoutMs ); /** * @brief Close TCP connection to server. * * @param[in] pNetworkContext The network context to close the connection. * * @return #SOCKETS_SUCCESS if successful; #SOCKETS_INVALID_PARAMETER on error. */ SocketStatus_t Plaintext_Disconnect( const NetworkContext_t * pNetworkContext ); /** * @brief Receives data over an established TCP connection. * * This can be used as #TransportInterface.recv function to receive data over * the network. * * @param[in] pNetworkContext The network context created using Plaintext_Connect API. * @param[out] pBuffer Buffer to receive network data into. * @param[in] bytesToRecv Number of bytes requested from the network. * * @return Number of bytes received if successful; negative value on error. */ int32_t Plaintext_Recv( NetworkContext_t * pNetworkContext, void * pBuffer, size_t bytesToRecv ); /** * @brief Sends data over an established TCP connection. * * This can be used as the #TransportInterface.send function to send data * over the network. * * @param[in] pNetworkContext The network context created using Plaintext_Connect API. * @param[in] pBuffer Buffer containing the bytes to send over the network. * @param[in] bytesToSend Number of bytes to send over the network. * * @return Number of bytes sent if successful; negative value on error. */ int32_t Plaintext_Send( NetworkContext_t * pNetworkContext, const void * pBuffer, size_t bytesToSend ); /* *INDENT-OFF* */ #ifdef __cplusplus } #endif /* *INDENT-ON* */ #endif /* ifndef PLAINTEXT_POSIX_H_ */