source: azure_iot_hub_f767zi/trunk/azure_iot_sdk/c-utility/inc/azure_c_shared_utility/http_proxy_io.h@ 457

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

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 717 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 HTTP_PROXY_IO_H
5#define HTTP_PROXY_IO_H
6
7#include "azure_c_shared_utility/xio.h"
8#include "umock_c/umock_c_prod.h"
9
10#ifdef __cplusplus
11extern "C" {
12#endif /* __cplusplus */
13
14typedef struct HTTP_PROXY_IO_CONFIG_TAG
15{
16 const char* hostname;
17 int port;
18 const char* proxy_hostname;
19 int proxy_port;
20 const char* username;
21 const char* password;
22} HTTP_PROXY_IO_CONFIG;
23
24MOCKABLE_FUNCTION(, const IO_INTERFACE_DESCRIPTION*, http_proxy_io_get_interface_description);
25
26#ifdef __cplusplus
27}
28#endif /* __cplusplus */
29
30#endif /* HTTP_PROXY_IO_H */
Note: See TracBrowser for help on using the repository browser.