• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# NetConn_NetCapabilities
2
3
4## 概述
5
6网络能力集。
7
8**起始版本:** 11
9
10**相关模块:**[NetConnection](_net_connection.md)
11
12
13## 汇总
14
15
16### 成员变量
17
18| 名称 | 描述 |
19| -------- | -------- |
20| [linkUpBandwidthKbps](#linkupbandwidthkbps) | 上行带宽。 |
21| [linkDownBandwidthKbps](#linkdownbandwidthkbps) | 下行带宽。 |
22| [netCaps](#netcaps) [NETCONN_MAX_CAP_SIZE] | 网络能力列表。 |
23| [netCapsSize](#netcapssize) | 网络能力列表的实际size。 |
24| [bearerTypes](#bearertypes) [NETCONN_MAX_BEARER_TYPE_SIZE] | 承载类型列表。 |
25| [bearerTypesSize](#bearertypessize) | 承载类型列表的实际size。 |
26
27
28## 结构体成员变量说明
29
30
31### bearerTypes
32
33```
34NetConn_NetBearerType NetConn_NetCapabilities::bearerTypes[NETCONN_MAX_BEARER_TYPE_SIZE]
35```
36
37**描述**
38
39承载类型列表。
40
41
42### bearerTypesSize
43
44```
45int32_t NetConn_NetCapabilities::bearerTypesSize
46```
47
48**描述**
49
50承载类型列表的实际size。
51
52
53### linkDownBandwidthKbps
54
55```
56uint32_t NetConn_NetCapabilities::linkDownBandwidthKbps
57```
58
59**描述**
60
61下行带宽。
62
63
64### linkUpBandwidthKbps
65
66```
67uint32_t NetConn_NetCapabilities::linkUpBandwidthKbps
68```
69
70**描述**
71
72上行带宽。
73
74
75### netCaps
76
77```
78NetConn_NetCap NetConn_NetCapabilities::netCaps[NETCONN_MAX_CAP_SIZE]
79```
80
81**描述**
82
83网络能力列表。
84
85
86### netCapsSize
87
88```
89int32_t NetConn_NetCapabilities::netCapsSize
90```
91
92**描述**
93
94网络能力列表的实际size。
95