• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# NetConn_HttpProxy
2
3
4## 概述
5
6代理配置信息。
7
8**起始版本:** 11
9
10**相关模块:**[NetConnection](_net_connection.md)
11
12**所在头文件:** [net_connection_type.h](net__connection__type_8h.md#net_connection_typeh)
13
14## 汇总
15
16
17### 成员变量
18
19| 名称 | 描述 |
20| -------- | -------- |
21| [host](#host) [NETCONN_MAX_STR_LEN] | 主机名。 |
22| [exclusionList](#exclusionlist) [NETCONN_MAX_EXCLUSION_SIZE][NETCONN_MAX_STR_LEN] | 代理服务器的排除列表。 |
23| [exclusionListSize](#exclusionlistsize) | 排除列表的实际大小。 |
24| [port](#port) | 端口号。 |
25
26
27## 结构体成员变量说明
28
29
30### exclusionList
31
32```
33char NetConn_HttpProxy::exclusionList[NETCONN_MAX_EXCLUSION_SIZE][NETCONN_MAX_STR_LEN]
34```
35
36**描述**
37
38代理服务器的排除列表。
39
40
41### exclusionListSize
42
43```
44int32_t NetConn_HttpProxy::exclusionListSize
45```
46
47**描述**
48
49排除列表的实际大小。
50
51
52### host
53
54```
55char NetConn_HttpProxy::host[NETCONN_MAX_STR_LEN]
56```
57
58**描述**
59
60主机名。
61
62
63### port
64
65```
66uint16_t NetConn_HttpProxy::port
67```
68
69**描述**
70
71端口号。
72