source: azure_iot_hub/trunk/azure_iohub/c-utility/inc/azure_c_shared_utility/tlsio.h@ 388

Last change on this file since 388 was 388, checked in by coas-nagasima, 5 years ago

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-chdr
File size: 517 bytes
Line 
1// Copyright (c) Microsoft. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
4#ifndef TLSIO_H
5#define TLSIO_H
6
7#include "xio.h"
8
9#ifdef __cplusplus
10extern "C" {
11#endif /* __cplusplus */
12
13typedef struct TLSIO_CONFIG_TAG
14{
15 const char* hostname;
16 int port;
17 const IO_INTERFACE_DESCRIPTION* underlying_io_interface;
18 void* underlying_io_parameters;
19} TLSIO_CONFIG;
20
21#ifdef __cplusplus
22}
23#endif /* __cplusplus */
24
25#endif /* TLSIO_H */
Note: See TracBrowser for help on using the repository browser.