• 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**所在头文件:** [net_connection_type.h](net__connection__type_8h.md#net_connection_typeh)
13
14## 汇总
15
16
17### 成员变量
18
19| 名称 | 描述 |
20| -------- | -------- |
21| [linkUpBandwidthKbps](#linkupbandwidthkbps) | 上行带宽。 |
22| [linkDownBandwidthKbps](#linkdownbandwidthkbps) | 下行带宽。 |
23| [netCaps](#netcaps) [NETCONN_MAX_CAP_SIZE] | 网络能力列表。 |
24| [netCapsSize](#netcapssize) | 网络能力列表的实际size。 |
25| [bearerTypes](#bearertypes) [NETCONN_MAX_BEARER_TYPE_SIZE] | 承载类型列表。 |
26| [bearerTypesSize](#bearertypessize) | 承载类型列表的实际size。 |
27
28
29## 结构体成员变量说明
30
31
32### bearerTypes
33
34```
35NetConn_NetBearerType NetConn_NetCapabilities::bearerTypes[NETCONN_MAX_BEARER_TYPE_SIZE]
36```
37
38**描述**
39
40承载类型列表。
41
42
43### bearerTypesSize
44
45```
46int32_t NetConn_NetCapabilities::bearerTypesSize
47```
48
49**描述**
50
51承载类型列表的实际size。
52
53
54### linkDownBandwidthKbps
55
56```
57uint32_t NetConn_NetCapabilities::linkDownBandwidthKbps
58```
59
60**描述**
61
62下行带宽。
63
64
65### linkUpBandwidthKbps
66
67```
68uint32_t NetConn_NetCapabilities::linkUpBandwidthKbps
69```
70
71**描述**
72
73上行带宽。
74
75
76### netCaps
77
78```
79NetConn_NetCap NetConn_NetCapabilities::netCaps[NETCONN_MAX_CAP_SIZE]
80```
81
82**描述**
83
84网络能力列表。
85
86
87### netCapsSize
88
89```
90int32_t NetConn_NetCapabilities::netCapsSize
91```
92
93**描述**
94
95网络能力列表的实际size。
96