1# NetConn_ConnectionProperties
2
3
4## Overview
5
6Defines the network connection 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| Use guide|
19| -------- | -------- |
20| [ifaceName](#ifacename) [NETCONN_MAX_STR_LEN] | Network interface name.|
21| [domain](#domain) [NETCONN_MAX_STR_LEN] | Domain name of the network connection.|
22| [tcpBufferSizes](#tcpbuffersizes) [NETCONN_MAX_STR_LEN] | TCP buffer size.|
23| [mtu](#mtu) | Maximum transmission unit.|
24| [netAddrList](#netaddrlist) [NETCONN_MAX_ADDR_SIZE] | Address list.|
25| [netAddrListSize](#netaddrlistsize) | Actual size of the address list.|
26| [dnsList](#dnslist) [NETCONN_MAX_ADDR_SIZE] | DNS list.|
27| [dnsListSize](#dnslistsize) | Actual size of the DNS list.|
28| [routeList](#routelist) [NETCONN_MAX_ROUTE_SIZE] | Route list.|
29| [routeListSize](#routelistsize) | Actual size of the route list.|
30| [httpProxy](#httpproxy) | HTTP proxy information.|
31
32
33## Member Variable Description
34
35
36### dnsList
37
38```
39NetConn_NetAddr NetConn_ConnectionProperties::dnsList[NETCONN_MAX_ADDR_SIZE]
40```
41
42**Description**
43
44DNS list.
45
46
47### dnsListSize
48
49```
50int32_t NetConn_ConnectionProperties::dnsListSize
51```
52
53**Description**
54
55Actual size of the DNS list.
56
57
58### domain
59
60```
61char NetConn_ConnectionProperties::domain[NETCONN_MAX_STR_LEN]
62```
63
64**Description**
65
66Domain name of the network connection.
67
68
69### httpProxy
70
71```
72NetConn_HttpProxy NetConn_ConnectionProperties::httpProxy
73```
74
75**Description**
76
77HTTP proxy information.
78
79
80### ifaceName
81
82```
83char NetConn_ConnectionProperties::ifaceName[NETCONN_MAX_STR_LEN]
84```
85
86**Description**
87
88Network interface name.
89
90
91### mtu
92
93```
94uint16_t NetConn_ConnectionProperties::mtu
95```
96
97**Description**
98
99Maximum transmission unit.
100
101
102### netAddrList
103
104```
105NetConn_NetAddr NetConn_ConnectionProperties::netAddrList[NETCONN_MAX_ADDR_SIZE]
106```
107
108**Description**
109
110Address list.
111
112
113### netAddrListSize
114
115```
116int32_t NetConn_ConnectionProperties::netAddrListSize
117```
118
119**Description**
120
121Actual size of the address list.
122
123
124### routeList
125
126```
127NetConn_Route NetConn_ConnectionProperties::routeList[NETCONN_MAX_ROUTE_SIZE]
128```
129
130**Description**
131
132Route list.
133
134
135### routeListSize
136
137```
138int32_t NetConn_ConnectionProperties::routeListSize
139```
140
141**Description**
142
143Actual size of the route list.
144
145
146### tcpBufferSizes
147
148```
149char NetConn_ConnectionProperties::tcpBufferSizes[NETCONN_MAX_STR_LEN]
150```
151
152**Description**
153
154TCP buffer size.
155