Jim Flynn
/
aws-iot-device-sdk-mbed-c
Changes to enabled on-line compiler
platform/mbedtls/network_platform.h
- Committer:
- JMF
- Date:
- 2018-05-30
- Revision:
- 0:082731ede69f
File content as of revision 0:082731ede69f:
/* * Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ #ifndef IOTSDKC_NETWORK_MBEDTLS_PLATFORM_H_H #include "mbedtls/config.h" #include "mbedtls/platform.h" #include "mbedtls/net.h" #include "mbedtls/ssl.h" #include "mbedtls/entropy.h" #include "mbedtls/ctr_drbg.h" #include "mbedtls/certs.h" #include "mbedtls/x509.h" #include "mbedtls/error.h" #include "mbedtls/debug.h" #include "mbedtls/timing.h" #ifdef __cplusplus extern "C" { #endif /** * @brief TLS Connection Parameters * * Defines a type containing TLS specific parameters to be passed down to the * TLS networking layer to create a TLS secured socket. */ typedef struct _TLSDataParams { mbedtls_entropy_context entropy; mbedtls_ctr_drbg_context ctr_drbg; mbedtls_ssl_context ssl; mbedtls_ssl_config conf; uint32_t flags; mbedtls_x509_crt cacert; mbedtls_x509_crt clicert; mbedtls_pk_context pkey; mbedtls_net_context server_fd; }TLSDataParams; #define IOTSDKC_NETWORK_MBEDTLS_PLATFORM_H_H #ifdef __cplusplus } #endif #endif //IOTSDKC_NETWORK_MBEDTLS_PLATFORM_H_H