source: azure_iot_hub/trunk/azure_iothub/c-utility/inc/azure_c_shared_utility/tlsio.h@ 389

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

ビルドが通るよう更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
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.