1# NetConn_HttpProxy
2
3
4## Overview
5
6Defines proxy configuration information.
7
8**Since**: 11
9
10**Related module**: [NetConnection](_net_connection.md)
11
12
13## Summary
14
15
16### Member Variables
17
18| Name| Description.|
19| -------- | -------- |
20| [host](#host) [NETCONN_MAX_STR_LEN] | Host name.|
21| [exclusionList](#exclusionlist) [NETCONN_MAX_EXCLUSION_SIZE][NETCONN_MAX_STR_LEN] | Exclusion list of proxy servers.|
22| [exclusionListSize](#exclusionlistsize) | Actual size of the exclusion list.|
23| [port](#port) | Port number.|
24
25
26## Member Variable Description
27
28
29### exclusionList
30
31```
32char NetConn_HttpProxy::exclusionList[NETCONN_MAX_EXCLUSION_SIZE][NETCONN_MAX_STR_LEN]
33```
34
35**Description**
36
37Exclusion list of proxy servers.
38
39
40### exclusionListSize
41
42```
43int32_t NetConn_HttpProxy::exclusionListSize
44```
45
46**Description**
47
48Actual size of the exclusion list.
49
50
51### host
52
53```
54char NetConn_HttpProxy::host[NETCONN_MAX_STR_LEN]
55```
56
57**Description**
58
59Host name.
60
61
62### port
63
64```
65uint16_t NetConn_HttpProxy::port
66```
67
68**Description**
69
70Port number.
71