js-apis-socket.md 81.6 KB
Newer Older
C
clevercong 已提交
1
# Socket连接
C
clevercong 已提交
2 3 4 5 6 7

>![](public_sys-resources/icon-note.gif) **说明:** 
>
>本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
>

C
clevercong 已提交
8
## 导入模块
C
clevercong 已提交
9

Z
zengyawen 已提交
10
```js
C
clevercong 已提交
11 12 13
import socket from '@ohos.net.socket';
```

C
clevercong 已提交
14
## socket.constructUDPSocketInstance
C
clevercong 已提交
15 16 17 18 19

constructUDPSocketInstance\(\): UDPSocket

创建一个UDPSocket对象。

C
clevercong 已提交
20
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
21

C
clevercong 已提交
22
**返回值:**
C
clevercong 已提交
23

C
clevercong 已提交
24 25
| 类型                               | 说明                    |
| :--------------------------------- | :---------------------- |
C
clevercong 已提交
26
| [UDPSocket](#udpsocket) | 返回一个UDPSocket对象。 |
C
clevercong 已提交
27 28


C
clevercong 已提交
29
**示例:**
C
clevercong 已提交
30

Z
zengyawen 已提交
31
```js
C
clevercong 已提交
32 33
let udp = socket.constructUDPSocketInstance();
```
C
clevercong 已提交
34 35


C
clevercong 已提交
36
## UDPSocket
C
clevercong 已提交
37

C
clevercong 已提交
38
UDPSocket连接。在调用UDPSocket的方法前,需要先通过[socket.constructUDPSocketInstance](#socketconstructudpsocketinstance)创建UDPSocket对象。
C
clevercong 已提交
39

C
clevercong 已提交
40
### bind
C
clevercong 已提交
41 42 43 44 45

bind\(address: NetAddress, callback: AsyncCallback<void\>\): void

绑定IP地址和端口,端口可以指定或由系统随机分配。使用callback方式作为异步方法。

C
clevercong 已提交
46 47
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
48
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
49

C
clevercong 已提交
50
**参数:**
C
clevercong 已提交
51

C
clevercong 已提交
52 53
| 参数名   | 类型                               | 必填 | 说明                                                   |
| -------- | ---------------------------------- | ---- | ------------------------------------------------------ |
C
clevercong 已提交
54
| address  | [NetAddress](#netaddress) | 是   | 目标地址信息,参考[NetAddress](#netaddress)。 |
C
clevercong 已提交
55
| callback | AsyncCallback\<void\>              | 是   | 回调函数。                                             |
C
clevercong 已提交
56

C
clevercong 已提交
57
**示例:**
C
clevercong 已提交
58

Z
zengyawen 已提交
59
```js
C
clevercong 已提交
60 61 62 63 64 65 66 67 68
let udp = socket.constructUDPSocketInstance();
udp.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
	console.log('bind fail');
	return;
  }
  console.log('bind success');
})
```
C
clevercong 已提交
69 70


C
clevercong 已提交
71
### bind
C
clevercong 已提交
72 73 74 75 76

bind\(address: NetAddress\): Promise<void\>

绑定IP地址和端口,端口可以指定或由系统随机分配。使用Promise方式作为异步方法。

C
clevercong 已提交
77 78
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
79
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
80

C
clevercong 已提交
81
**参数:**
C
clevercong 已提交
82

C
clevercong 已提交
83 84
| 参数名  | 类型                               | 必填 | 说明                                                   |
| ------- | ---------------------------------- | ---- | ------------------------------------------------------ |
C
clevercong 已提交
85
| address | [NetAddress](#netaddress) | 是   | 目标地址信息,参考[NetAddress](#netaddress)。 |
C
clevercong 已提交
86 87


C
clevercong 已提交
88
**返回值:**
C
clevercong 已提交
89

C
clevercong 已提交
90 91 92
| 类型            | 说明                                       |
| :-------------- | :----------------------------------------- |
| Promise\<void\> | 以Promise形式异步返回UDPSocket绑定的结果。 |
C
clevercong 已提交
93

C
clevercong 已提交
94
**示例:**
C
clevercong 已提交
95

Z
zengyawen 已提交
96
```js
C
clevercong 已提交
97 98 99 100 101 102 103 104
let udp = socket.constructUDPSocketInstance();
let promise = udp.bind({address: '192.168.xx.xxx', port: 8080, family: 1});
promise .then(() => {
  console.log('bind success');
}).catch(err => {
  console.log('bind fail');
});
```
C
clevercong 已提交
105 106


C
clevercong 已提交
107
### send
C
clevercong 已提交
108 109 110 111 112

send\(options: UDPSendOptions, callback: AsyncCallback<void\>\): void

通过UDPSocket连接发送数据。使用callback方式作为异步方法。

113 114
发送数据前,需要先调用[UDPSocket.bind()](#bind)绑定IP地址和端口。

C
clevercong 已提交
115 116
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
117
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
118

C
clevercong 已提交
119 120 121 122
**参数:**

| 参数名   | 类型                                     | 必填 | 说明                                                         |
| -------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
123
| options  | [UDPSendOptions](#udpsendoptions) | 是   | UDPSocket发送参数,参考[UDPSendOptions](#udpsendoptions)。 |
C
clevercong 已提交
124 125 126 127
| callback | AsyncCallback\<void\>                    | 是   | 回调函数。                                                   |

**示例:**

Z
zengyawen 已提交
128
```js
C
clevercong 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
let udp = socket.constructUDPSocketInstance();
udp.send({
  data:'Hello, server!',
  address: {
	address:'192.168.xx.xxx',
	port:xxxx,
	family:1
  }
}, err=> {
	if (err) {
	  console.log('send fail');
	  return;
	}
	console.log('send success');
})
```
C
clevercong 已提交
145 146


C
clevercong 已提交
147
### send
C
clevercong 已提交
148 149 150 151 152

send\(options: UDPSendOptions\): Promise<void\>

通过UDPSocket连接发送数据。使用Promise方式作为异步方法。

153 154
发送数据前,需要先调用[UDPSocket.bind()](#bind)绑定IP地址和端口。

C
clevercong 已提交
155 156
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
157
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
158

C
clevercong 已提交
159
**参数:**
C
clevercong 已提交
160

C
clevercong 已提交
161 162
| 参数名  | 类型                                     | 必填 | 说明                                                         |
| ------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
163
| options | [UDPSendOptions](#udpsendoptions) | 是   | UDPSocket发送参数,参考[UDPSendOptions](#udpsendoptions)。 |
C
clevercong 已提交
164

C
clevercong 已提交
165
**返回值:**
C
clevercong 已提交
166

C
clevercong 已提交
167 168 169
| 类型            | 说明                                           |
| :-------------- | :--------------------------------------------- |
| Promise\<void\> | 以Promise形式返回UDPSocket连接发送数据的结果。 |
C
clevercong 已提交
170

C
clevercong 已提交
171
**示例:**
C
clevercong 已提交
172

Z
zengyawen 已提交
173
```js
C
clevercong 已提交
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
let udp = socket.constructUDPSocketInstance();
let promise = udp.send({
  data:'Hello, server!',
  address: {
	address:'192.168.xx.xxx',
	port:xxxx,
	family:1
  }
});
promise.then(() => {
  console.log('send success');
}).catch(err => {
  console.log('send fail');
});
```
C
clevercong 已提交
189 190


C
clevercong 已提交
191
### close
C
clevercong 已提交
192 193 194 195 196

close\(callback: AsyncCallback<void\>\): void

关闭UDPSocket连接。使用callback方式作为异步方法。

C
clevercong 已提交
197 198
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
199
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
200

C
clevercong 已提交
201
**参数:**
C
clevercong 已提交
202

C
clevercong 已提交
203 204 205
| 参数名   | 类型                  | 必填 | 说明       |
| -------- | --------------------- | ---- | ---------- |
| callback | AsyncCallback\<void\> | 是   | 回调函数。 |
C
clevercong 已提交
206

C
clevercong 已提交
207
**示例:**
C
clevercong 已提交
208

Z
zengyawen 已提交
209
```js
C
clevercong 已提交
210 211 212 213 214 215 216 217 218
let udp = socket.constructUDPSocketInstance();
udp.close(err => {
  if (err) {
	console.log('close fail');
	return;
  }
  console.log('close success');
})
```
C
clevercong 已提交
219 220


C
clevercong 已提交
221
### close
C
clevercong 已提交
222 223 224 225 226

close\(\): Promise<void\>

关闭UDPSocket连接。使用Promise方式作为异步方法。

C
clevercong 已提交
227 228
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
229
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
230

C
clevercong 已提交
231
**返回值:**
C
clevercong 已提交
232

C
clevercong 已提交
233 234 235
| 类型            | 说明                                       |
| :-------------- | :----------------------------------------- |
| Promise\<void\> | 以Promise形式返回关闭UDPSocket连接的结果。 |
C
clevercong 已提交
236

C
clevercong 已提交
237
**示例:**
C
clevercong 已提交
238

Z
zengyawen 已提交
239
```js
C
clevercong 已提交
240 241 242 243 244 245 246 247
let udp = socket.constructUDPSocketInstance();
let promise = udp.close();
promise.then(() => {
  console.log('close success');
}).catch(err => {
  console.log('close fail');
});
```
C
clevercong 已提交
248 249


C
clevercong 已提交
250
### getState
C
clevercong 已提交
251 252 253 254 255 256

getState\(callback: AsyncCallback<SocketStateBase\>\): void

获取UDPSocket状态。使用callback方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
C
clevercong 已提交
257 258 259
>[bind](#bind)方法调用成功后,才可调用此方法。

**需要权限**:ohos.permission.INTERNET
C
clevercong 已提交
260

C
clevercong 已提交
261
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
262

C
clevercong 已提交
263 264 265 266
**参数:**

| 参数名   | 类型                                                   | 必填 | 说明       |
| -------- | ------------------------------------------------------ | ---- | ---------- |
C
clevercong 已提交
267
| callback | AsyncCallback<[SocketStateBase](#socketstatebase)> | 是   | 回调函数。 |
C
clevercong 已提交
268 269 270

**示例:**

Z
zengyawen 已提交
271
```js
C
clevercong 已提交
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
let udp = socket.constructUDPSocketInstance();
udp.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
	console.log('bind fail');
	return;
  }
  console.log('bind success');
  udp.getState((err, data) => {
	if (err) {
	  console.log('getState fail');
	  return;
	}
	console.log('getState success:' + JSON.stringify(data));
  })
})
```
C
clevercong 已提交
288 289


C
clevercong 已提交
290
### getState
C
clevercong 已提交
291 292 293 294 295 296

getState\(\): Promise<SocketStateBase\>

获取UDPSocket状态。使用Promise方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
C
clevercong 已提交
297 298 299
>[bind](#bind)方法调用成功后,才可调用此方法。

**需要权限**:ohos.permission.INTERNET
C
clevercong 已提交
300

C
clevercong 已提交
301
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
302

C
clevercong 已提交
303
**返回值:**
C
clevercong 已提交
304

C
clevercong 已提交
305 306
| 类型                                             | 说明                                       |
| :----------------------------------------------- | :----------------------------------------- |
C
clevercong 已提交
307
| Promise<[SocketStateBase](#socketstatebase)> | 以Promise形式返回获取UDPSocket状态的结果。 |
C
clevercong 已提交
308

C
clevercong 已提交
309
**示例:**
C
clevercong 已提交
310

Z
zengyawen 已提交
311
```js
C
clevercong 已提交
312 313 314 315 316 317 318
let udp = socket.constructUDPSocketInstance();
udp.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
	console.log('bind fail');
	return;
  }
  console.log('bind success');
Z
zhuwenchao 已提交
319
  let promise = udp.getState();
C
clevercong 已提交
320 321 322 323 324 325 326
  promise.then(data => {
	console.log('getState success:' + JSON.stringify(data));
  }).catch(err => {
	console.log('getState fail');
  });
})
```
C
clevercong 已提交
327 328


C
clevercong 已提交
329
### setExtraOptions
C
clevercong 已提交
330 331 332 333 334 335

setExtraOptions\(options: UDPExtraOptions, callback: AsyncCallback<void\>\): void

设置UDPSocket连接的其他属性。使用callback方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
C
clevercong 已提交
336 337 338
>[bind](#bind)方法调用成功后,才可调用此方法。

**需要权限**:ohos.permission.INTERNET
C
clevercong 已提交
339

C
clevercong 已提交
340
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
341

C
clevercong 已提交
342 343 344 345
**参数:**

| 参数名   | 类型                                     | 必填 | 说明                                                         |
| -------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
346
| options  | [UDPExtraOptions](#udpextraoptions) | 是   | UDPSocket连接的其他属性,参考[UDPExtraOptions](#udpextraoptions)。 |
C
clevercong 已提交
347 348 349 350 351
| callback | AsyncCallback\<void\>                    | 是   | 回调函数。                                                   |


**示例:**

Z
zengyawen 已提交
352
```js
C
clevercong 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
let udp = socket.constructUDPSocketInstance();
udp.bind({address:'192.168.xx.xxx', port:xxxx, family:1}, err=> {
  if (err) {
	console.log('bind fail');
	return;
  }
  console.log('bind success');
  udp.setExtraOptions({
	receiveBufferSize:1000,
	sendBufferSize:1000,
	reuseAddress:false,
	socketTimeout:6000,
	broadcast:true
  }, err=> {
	if (err) {
	  console.log('setExtraOptions fail');
	  return;
	}
	console.log('setExtraOptions success');
  })
})
```
C
clevercong 已提交
375 376


C
clevercong 已提交
377
### setExtraOptions
C
clevercong 已提交
378 379 380 381 382 383

setExtraOptions\(options: UDPExtraOptions\): Promise<void\>

设置UDPSocket连接的其他属性。使用Promise方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
C
clevercong 已提交
384 385 386
>[bind](#bind)方法调用成功后,才可调用此方法。

**需要权限**:ohos.permission.INTERNET
C
clevercong 已提交
387

C
clevercong 已提交
388
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
389

C
clevercong 已提交
390 391 392 393
**参数:**

| 参数名  | 类型                                     | 必填 | 说明                                                         |
| ------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
394
| options | [UDPExtraOptions](#udpextraoptions) | 是   | UDPSocket连接的其他属性,参考[UDPExtraOptions](#udpextraoptions)。 |
C
clevercong 已提交
395 396 397 398 399 400 401 402 403

**返回值:**

| 类型            | 说明                                                 |
| :-------------- | :--------------------------------------------------- |
| Promise\<void\> | 以Promise形式返回设置UDPSocket连接的其他属性的结果。 |

**示例:**

Z
zengyawen 已提交
404
```js
C
clevercong 已提交
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
let udp = socket.constructUDPSocketInstance();
let promise = udp.bind({address:'192.168.xx.xxx', port:xxxx, family:1});
promise.then(() => {
  console.log('bind success');
  let promise1 = udp.setExtraOptions({
	receiveBufferSize:1000,
	sendBufferSize:1000,
	reuseAddress:false,
	socketTimeout:6000,
	broadcast:true
  });
  promise1.then(() => {
	console.log('setExtraOptions success');
  }).catch(err => {
	console.log('setExtraOptions fail');
  });
}).catch(err => {
  console.log('bind fail');
});
```
C
clevercong 已提交
425 426


C
clevercong 已提交
427
### on\('message'\)
C
clevercong 已提交
428 429 430 431 432

on\(type: 'message', callback: Callback<\{message: ArrayBuffer, remoteInfo: SocketRemoteInfo\}\>\): void

订阅UDPSocket连接的接收消息事件。使用callback方式作为异步方法。

C
clevercong 已提交
433
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
434

C
clevercong 已提交
435
**参数:**
C
clevercong 已提交
436

C
clevercong 已提交
437 438 439
| 参数名   | 类型                                                         | 必填 | 说明                                      |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
| type     | string                                                       | 是   | 订阅的事件类型。'message':接收消息事件。 |
C
clevercong 已提交
440
| callback | Callback<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo)}> | 是   | 回调函数。                                |
C
clevercong 已提交
441

C
clevercong 已提交
442
**示例:**
C
clevercong 已提交
443

Z
zengyawen 已提交
444
```js
C
clevercong 已提交
445 446
let udp = socket.constructUDPSocketInstance();
udp.on('message', value => {
C
clevercong 已提交
447
	console.log("on message, message:" + value.message + ", remoteInfo:" + value.remoteInfo);
C
clevercong 已提交
448 449
});
```
C
clevercong 已提交
450 451


C
clevercong 已提交
452
### off\('message'\)
C
clevercong 已提交
453 454 455 456 457 458 459 460

off\(type: 'message', callback?: Callback<\{message: ArrayBuffer, remoteInfo: SocketRemoteInfo\}\>\): void

取消订阅UDPSocket连接的接收消息事件。使用callback方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
>可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

C
clevercong 已提交
461
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
462

C
clevercong 已提交
463
**参数:**
C
clevercong 已提交
464

C
clevercong 已提交
465 466 467
| 参数名   | 类型                                                         | 必填 | 说明                                      |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
| type     | string                                                       | 是   | 订阅的事件类型。'message':接收消息事件。 |
C
clevercong 已提交
468
| callback | Callback<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo)}> | 否   | 回调函数。                                |
C
clevercong 已提交
469

C
clevercong 已提交
470
**示例:**
C
clevercong 已提交
471

Z
zengyawen 已提交
472
```js
C
clevercong 已提交
473 474
let udp = socket.constructUDPSocketInstance();
let callback = value =>{
C
clevercong 已提交
475
	console.log("on message, message:" + value.message + ", remoteInfo:" + value.remoteInfo);
C
clevercong 已提交
476 477 478 479 480 481
}
udp.on('message', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
udp.off('message', callback);
udp.off('message');
```
C
clevercong 已提交
482 483


C
clevercong 已提交
484
### on\('listening' | 'close'\)
C
clevercong 已提交
485 486 487 488 489

on\(type: 'listening' | 'close', callback: Callback<void\>\): void

订阅UDPSocket连接的数据包消息事件或关闭事件。使用callback方式作为异步方法。

C
clevercong 已提交
490
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
491

C
clevercong 已提交
492
**参数:**
C
clevercong 已提交
493

C
clevercong 已提交
494 495 496 497
| 参数名   | 类型             | 必填 | 说明                                                         |
| -------- | ---------------- | ---- | ------------------------------------------------------------ |
| type     | string           | 是   | 订阅的事件类型。<br />- 'listening':数据包消息事件。<br />- 'close':关闭事件。 |
| callback | Callback\<void\> | 是   | 回调函数。                                                   |
C
clevercong 已提交
498

C
clevercong 已提交
499
**示例:**
C
clevercong 已提交
500

Z
zengyawen 已提交
501
```js
C
clevercong 已提交
502 503
let udp = socket.constructUDPSocketInstance();
udp.on('listening', () => {
C
clevercong 已提交
504
	console.log("on listening success");
C
clevercong 已提交
505 506 507 508 509
});
udp.on('close', () => {
	console.log("on close success" );
});
```
C
clevercong 已提交
510 511


C
clevercong 已提交
512
### off\('listening' | 'close'\)
C
clevercong 已提交
513 514 515 516 517 518 519 520

off\(type: 'listening' | 'close', callback?: Callback<void\>\): void

取消订阅UDPSocket连接的数据包消息事件或关闭事件。使用callback方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
>可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

C
clevercong 已提交
521
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
522

C
clevercong 已提交
523 524 525 526 527 528 529 530 531
**参数:**

| 参数名   | 类型             | 必填 | 说明                                                         |
| -------- | ---------------- | ---- | ------------------------------------------------------------ |
| type     | string           | 是   | 订阅事件类型。<br />- 'listening':数据包消息事件。<br />- 'close':关闭事件。 |
| callback | Callback\<void\> | 否   | 回调函数。                                                   |

**示例:**

Z
zengyawen 已提交
532
```js
C
clevercong 已提交
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
let udp = socket.constructUDPSocketInstance();
let callback1 = () =>{
	console.log("on listening, success");
}
udp.on('listening', callback1);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
udp.off('listening', callback1);
udp.off('listening');
let callback2 = () =>{
	console.log("on close, success");
}
udp.on('close', callback2);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
udp.off('close', callback2);
udp.off('close');
```
C
clevercong 已提交
549 550


C
clevercong 已提交
551
### on\('error'\)
C
clevercong 已提交
552 553 554 555 556

on\(type: 'error', callback: ErrorCallback\): void

订阅UDPSocket连接的error事件。使用callback方式作为异步方法。

C
clevercong 已提交
557
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
558

C
clevercong 已提交
559
**参数:**
C
clevercong 已提交
560

C
clevercong 已提交
561 562 563 564
| 参数名   | 类型          | 必填 | 说明                                 |
| -------- | ------------- | ---- | ------------------------------------ |
| type     | string        | 是   | 订阅的事件类型。'error':error事件。 |
| callback | ErrorCallback | 是   | 回调函数。                           |
C
clevercong 已提交
565 566


C
clevercong 已提交
567
**示例:**
C
clevercong 已提交
568

Z
zengyawen 已提交
569
```js
Z
zengyawen 已提交
570
let udp = socket.constructUDPSocketInstance();
C
clevercong 已提交
571 572 573 574
udp.on('error', err => {
	console.log("on error, err:" + JSON.stringify(err))
});
```
C
clevercong 已提交
575 576


C
clevercong 已提交
577
### off\('error'\)
C
clevercong 已提交
578 579 580 581 582 583 584 585

off\(type: 'error', callback?: ErrorCallback\): void

取消订阅UDPSocket连接的error事件。使用callback方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
>可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

C
clevercong 已提交
586
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
587

C
clevercong 已提交
588
**参数:**
C
clevercong 已提交
589

C
clevercong 已提交
590 591 592 593
| 参数名   | 类型          | 必填 | 说明                                 |
| -------- | ------------- | ---- | ------------------------------------ |
| type     | string        | 是   | 订阅的事件类型。'error':error事件。 |
| callback | ErrorCallback | 否   | 回调函数。                           |
C
clevercong 已提交
594

C
clevercong 已提交
595
**示例:**
C
clevercong 已提交
596

Z
zengyawen 已提交
597
```js
Z
zengyawen 已提交
598
let udp = socket.constructUDPSocketInstance();
C
clevercong 已提交
599 600 601 602 603 604 605 606
let callback = err =>{
	console.log("on error, err:" + JSON.stringify(err));
}
udp.on('error', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
udp.off('error', callback);
udp.off('error');
```
C
clevercong 已提交
607 608


C
clevercong 已提交
609
## NetAddress
C
clevercong 已提交
610 611 612

目标地址信息。

C
clevercong 已提交
613 614
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetStack。

L
liyufan 已提交
615
| 名称  | 类型   | 必填 | 说明                                                         |
C
clevercong 已提交
616 617 618 619 620
| ------- | ------ | ---- | ------------------------------------------------------------ |
| address | string | 是   | 本地绑定的ip地址。                                           |
| port    | number | 否   | 端口号 ,范围0~65535。如果不指定系统随机分配端口。           |
| family  | number | 否   | 网络协议类型,可选类型:<br />- 1:IPv4<br />- 2:IPv6<br />默认为1。 |

C
clevercong 已提交
621
## UDPSendOptions
C
clevercong 已提交
622 623 624

UDPSocket发送参数。

C
clevercong 已提交
625 626
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetStack。

L
liyufan 已提交
627
| 名称  | 类型                               | 必填 | 说明           |
C
clevercong 已提交
628
| ------- | ---------------------------------- | ---- | -------------- |
Z
zhuwenchao 已提交
629
| data    | string \| ArrayBuffer<sup>7+</sup>                          | 是   | 发送的数据。   |
C
clevercong 已提交
630
| address | [NetAddress](#netaddress) | 是   | 目标地址信息。 |
C
clevercong 已提交
631

C
clevercong 已提交
632
## UDPExtraOptions
C
clevercong 已提交
633 634 635

UDPSocket连接的其他属性。

C
clevercong 已提交
636 637
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetStack。

L
liyufan 已提交
638
| 名称            | 类型    | 必填 | 说明                             |
C
clevercong 已提交
639 640 641 642 643 644 645
| ----------------- | ------- | ---- | -------------------------------- |
| broadcast         | boolean | 否   | 是否可以发送广播。默认为false。  |
| receiveBufferSize | number  | 否   | 接收缓冲区大小(单位:Byte)。   |
| sendBufferSize    | number  | 否   | 发送缓冲区大小(单位:Byte)。   |
| reuseAddress      | boolean | 否   | 是否重用地址。默认为false。      |
| socketTimeout     | number  | 否   | 套接字超时时间,单位毫秒(ms)。 |

C
clevercong 已提交
646
## SocketStateBase
C
clevercong 已提交
647 648 649

Socket的状态信息。

C
clevercong 已提交
650 651
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetStack。

L
liyufan 已提交
652
| 名称      | 类型    | 必填 | 说明       |
C
clevercong 已提交
653 654 655 656 657
| ----------- | ------- | ---- | ---------- |
| isBound     | boolean | 是   | 是否绑定。 |
| isClose     | boolean | 是   | 是否关闭。 |
| isConnected | boolean | 是   | 是否连接。 |

C
clevercong 已提交
658
## SocketRemoteInfo
C
clevercong 已提交
659 660 661

Socket的连接信息。

C
clevercong 已提交
662 663
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetStack。

L
liyufan 已提交
664
| 名称  | 类型   | 必填 | 说明                                                         |
C
clevercong 已提交
665 666 667 668 669 670
| ------- | ------ | ---- | ------------------------------------------------------------ |
| address | string | 是   | 本地绑定的ip地址。                                           |
| family  | string | 是   | 网络协议类型,可选类型:<br />- IPv4<br />- IPv6<br />默认为IPv4。 |
| port    | number | 是   | 端口号,范围0~65535。                                        |
| size    | number | 是   | 服务器响应信息的字节长度。                                   |

C
clevercong 已提交
671
## socket.constructTCPSocketInstance
C
clevercong 已提交
672 673 674 675 676

constructTCPSocketInstance\(\): TCPSocket

创建一个TCPSocket对象。

C
clevercong 已提交
677
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
678

C
clevercong 已提交
679
**返回值:**
C
clevercong 已提交
680 681 682

  | 类型                               | 说明                    |
  | :--------------------------------- | :---------------------- |
C
clevercong 已提交
683
  | [TCPSocket](#tcpsocket) | 返回一个TCPSocket对象。 |
C
clevercong 已提交
684

C
clevercong 已提交
685
**示例:**
C
clevercong 已提交
686

Z
zengyawen 已提交
687
```js
C
clevercong 已提交
688 689
let tcp = socket.constructTCPSocketInstance();
```
C
clevercong 已提交
690 691


C
clevercong 已提交
692
## TCPSocket
C
clevercong 已提交
693

C
clevercong 已提交
694
TCPSocket连接。在调用TCPSocket的方法前,需要先通过[socket.constructTCPSocketInstance](#socketconstructtcpsocketinstance)创建TCPSocket对象。
C
clevercong 已提交
695

C
clevercong 已提交
696
### bind
C
clevercong 已提交
697 698 699 700 701

bind\(address: NetAddress, callback: AsyncCallback<void\>\): void

绑定IP地址和端口,端口可以指定或由系统随机分配。使用callback方法作为异步方法。

C
clevercong 已提交
702 703
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
704
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
705

C
clevercong 已提交
706
**参数:**
C
clevercong 已提交
707

C
clevercong 已提交
708 709
| 参数名   | 类型                               | 必填 | 说明                                                   |
| -------- | ---------------------------------- | ---- | ------------------------------------------------------ |
C
clevercong 已提交
710
| address  | [NetAddress](#netaddress) | 是   | 目标地址信息,参考[NetAddress](#netaddress)。 |
C
clevercong 已提交
711
| callback | AsyncCallback\<void\>              | 是   | 回调函数。                                             |
C
clevercong 已提交
712 713


C
clevercong 已提交
714
**示例:**
C
clevercong 已提交
715

Z
zengyawen 已提交
716
```js
C
clevercong 已提交
717 718 719 720 721 722 723 724 725
let tcp = socket.constructTCPSocketInstance();
tcp.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
	console.log('bind fail');
	return;
  }
  console.log('bind success');
})
```
C
clevercong 已提交
726 727


C
clevercong 已提交
728
### bind
C
clevercong 已提交
729

C
clevercong 已提交
730
bind\(address: NetAddress\): Promise<void\>
C
clevercong 已提交
731 732 733

绑定IP地址和端口,端口可以指定或由系统随机分配。使用Promise方法作为异步方法。

C
clevercong 已提交
734 735
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
736
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
737

C
clevercong 已提交
738
**参数:**
C
clevercong 已提交
739

C
clevercong 已提交
740 741
| 参数名  | 类型                               | 必填 | 说明                                                   |
| ------- | ---------------------------------- | ---- | ------------------------------------------------------ |
C
clevercong 已提交
742
| address | [NetAddress](#netaddress) | 是   | 目标地址信息,参考[NetAddress](#netaddress)。 |
C
clevercong 已提交
743

C
clevercong 已提交
744
**返回值:**
C
clevercong 已提交
745

C
clevercong 已提交
746 747 748
| 类型            | 说明                                                     |
| :-------------- | :------------------------------------------------------- |
| Promise\<void\> | 以Promise形式返回TCPSocket绑定本机的IP地址和端口的结果。 |
C
clevercong 已提交
749

C
clevercong 已提交
750
**示例:**
C
clevercong 已提交
751

Z
zengyawen 已提交
752
```js
C
clevercong 已提交
753 754 755 756 757 758 759 760
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.bind({address: '192.168.xx.xxx', port: xxxx, family: 1});
promise.then(() => {
  console.log('bind success');
}).catch(err => {
  console.log('bind fail');
});
```
C
clevercong 已提交
761 762


C
clevercong 已提交
763
### connect
C
clevercong 已提交
764 765 766 767 768

connect\(options: TCPConnectOptions, callback: AsyncCallback<void\>\): void

连接到指定的IP地址和端口。使用callback方法作为异步方法。

C
clevercong 已提交
769 770
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
771
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
772

C
clevercong 已提交
773
**参数:**
C
clevercong 已提交
774

C
clevercong 已提交
775 776
| 参数名   | 类型                                     | 必填 | 说明                                                         |
| -------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
777
| options  | [TCPConnectOptions](#tcpconnectoptions) | 是   | TCPSocket连接的参数,参考[TCPConnectOptions](#tcpconnectoptions)。 |
C
clevercong 已提交
778
| callback | AsyncCallback\<void\>                    | 是   | 回调函数。                                                   |
C
clevercong 已提交
779

C
clevercong 已提交
780
**示例:**
C
clevercong 已提交
781

Z
zengyawen 已提交
782
```js
C
clevercong 已提交
783 784 785 786 787 788 789 790 791
let tcp = socket.constructTCPSocketInstance();
tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000}, err => {
  if (err) {
	console.log('connect fail');
	return;
  }
  console.log('connect success');
})
```
C
clevercong 已提交
792 793


C
clevercong 已提交
794
### connect
C
clevercong 已提交
795 796 797 798 799

connect\(options: TCPConnectOptions\): Promise<void\>

连接到指定的IP地址和端口。使用promise方法作为异步方法。

C
clevercong 已提交
800 801
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
802
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
803

C
clevercong 已提交
804
**参数:**
C
clevercong 已提交
805

C
clevercong 已提交
806 807
| 参数名  | 类型                                     | 必填 | 说明                                                         |
| ------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
808
| options | [TCPConnectOptions](#tcpconnectoptions) | 是   | TCPSocket连接的参数,参考[TCPConnectOptions](#tcpconnectoptions)。 |
C
clevercong 已提交
809

C
clevercong 已提交
810
**返回值:**
C
clevercong 已提交
811

C
clevercong 已提交
812 813 814
| 类型            | 说明                                                       |
| :-------------- | :--------------------------------------------------------- |
| Promise\<void\> | 以Promise形式返回TCPSocket连接到指定的IP地址和端口的结果。 |
C
clevercong 已提交
815

C
clevercong 已提交
816
**示例:**
C
clevercong 已提交
817

Z
zengyawen 已提交
818
```js
C
clevercong 已提交
819 820 821 822 823 824 825 826
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise.then(() => {
  console.log('connect success')
}).catch(err => {
  console.log('connect fail');
});
```
C
clevercong 已提交
827 828


C
clevercong 已提交
829
### send
C
clevercong 已提交
830 831 832 833 834 835

send\(options: TCPSendOptions, callback: AsyncCallback<void\>\): void

通过TCPSocket连接发送数据。使用callback方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
C
clevercong 已提交
836 837 838
>[connect](#connect)方法调用成功后,才可调用此方法。

**需要权限**:ohos.permission.INTERNET
C
clevercong 已提交
839

C
clevercong 已提交
840
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
841

C
clevercong 已提交
842 843 844 845
**参数:**

| 参数名   | 类型                                    | 必填 | 说明                                                         |
| -------- | --------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
846
| options  | [TCPSendOptions](#tcpsendoptions) | 是   | TCPSocket发送请求的参数,参考[TCPSendOptions](#tcpsendoptions)。 |
C
clevercong 已提交
847 848 849 850
| callback | AsyncCallback\<void\>                   | 是   | 回调函数。                                                   |

**示例:**

Z
zengyawen 已提交
851
```js
C
clevercong 已提交
852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise.then(() => {
  console.log('connect success');
  tcp.send({
	data:'Hello, server!'
  },err => {
	if (err) {
	  console.log('send fail');
	  return;
	}
	console.log('send success');
  })
}).catch(err => {
  console.log('connect fail');
});
```
C
clevercong 已提交
869 870


C
clevercong 已提交
871
### send
C
clevercong 已提交
872 873 874 875 876 877

send\(options: TCPSendOptions\): Promise<void\>

通过TCPSocket连接发送数据。使用Promise方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
C
clevercong 已提交
878 879 880
>[connect](#connect)方法调用成功后,才可调用此方法。

**需要权限**:ohos.permission.INTERNET
C
clevercong 已提交
881

C
clevercong 已提交
882
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
883

C
clevercong 已提交
884 885 886 887
**参数:**

| 参数名  | 类型                                    | 必填 | 说明                                                         |
| ------- | --------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
888
| options | [TCPSendOptions](#tcpsendoptions) | 是   | TCPSocket发送请求的参数,参考[TCPSendOptions](#tcpsendoptions)。 |
C
clevercong 已提交
889 890 891 892 893 894 895 896 897

**返回值:**

| 类型            | 说明                                               |
| :-------------- | :------------------------------------------------- |
| Promise\<void\> | 以Promise形式返回通过TCPSocket连接发送数据的结果。 |

**示例:**

Z
zengyawen 已提交
898
```js
C
clevercong 已提交
899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914
let tcp = socket.constructTCPSocketInstance();
let promise1 = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise1.then(() => {
  console.log('connect success');
  let promise2 = tcp.send({
	data:'Hello, server!'
  });
  promise2.then(() => {
	console.log('send success');
  }).catch(err => {
	console.log('send fail');
  });
}).catch(err => {
  console.log('connect fail');
});
```
C
clevercong 已提交
915 916


C
clevercong 已提交
917
### close
C
clevercong 已提交
918 919 920 921 922

close\(callback: AsyncCallback<void\>\): void

关闭TCPSocket连接。使用callback方式作为异步方法。

C
clevercong 已提交
923 924
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
925
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
926

C
clevercong 已提交
927
**参数:**
C
clevercong 已提交
928

C
clevercong 已提交
929 930 931
| 参数名   | 类型                  | 必填 | 说明       |
| -------- | --------------------- | ---- | ---------- |
| callback | AsyncCallback\<void\> | 是   | 回调函数。 |
C
clevercong 已提交
932 933


C
clevercong 已提交
934
**示例:**
C
clevercong 已提交
935

Z
zengyawen 已提交
936
```js
C
clevercong 已提交
937 938 939 940 941 942 943 944 945
let tcp = socket.constructTCPSocketInstance();
tcp.close(err => {
  if (err) {
	console.log('close fail');
	return;
  }
  console.log('close success');
})
```
C
clevercong 已提交
946 947


C
clevercong 已提交
948
### close
C
clevercong 已提交
949 950 951 952 953

close\(\): Promise<void\>

关闭TCPSocket连接。使用Promise方式作为异步方法。

C
clevercong 已提交
954 955
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
956
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
957

C
clevercong 已提交
958
**返回值:**
C
clevercong 已提交
959

C
clevercong 已提交
960 961 962
| 类型            | 说明                                       |
| :-------------- | :----------------------------------------- |
| Promise\<void\> | 以Promise形式返回关闭TCPSocket连接的结果。 |
C
clevercong 已提交
963

C
clevercong 已提交
964
**示例:**
C
clevercong 已提交
965

Z
zengyawen 已提交
966
```js
C
clevercong 已提交
967 968 969 970 971 972 973 974
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.close();
promise.then(() => {
  console.log('close success');
}).catch(err => {
  console.log('close fail');
});
```
C
clevercong 已提交
975 976


C
clevercong 已提交
977
### getRemoteAddress
C
clevercong 已提交
978 979 980 981 982 983

getRemoteAddress\(callback: AsyncCallback<NetAddress\>\): void

获取对端Socket地址。使用callback方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
C
clevercong 已提交
984 985 986
>[connect](#connect)方法调用成功后,才可调用此方法。

**需要权限**:ohos.permission.INTERNET
C
clevercong 已提交
987

C
clevercong 已提交
988
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
989

C
clevercong 已提交
990
**参数:**
C
clevercong 已提交
991

C
clevercong 已提交
992 993
| 参数名   | 类型                                              | 必填 | 说明       |
| -------- | ------------------------------------------------- | ---- | ---------- |
C
clevercong 已提交
994
| callback | AsyncCallback<[NetAddress](#netaddress)> | 是   | 回调函数。 |
C
clevercong 已提交
995

C
clevercong 已提交
996
**示例:**
C
clevercong 已提交
997

Z
zengyawen 已提交
998
```js
C
clevercong 已提交
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise.then(() => {
  console.log('connect success');
  tcp.getRemoteAddress((err, data) => {
	if (err) {
	  console.log('getRemoteAddressfail');
	  return;
	}
	console.log('getRemoteAddresssuccess:' + JSON.stringify(data));
  })
}).catch(err => {
  console.log('connect fail');
});
```
C
clevercong 已提交
1014 1015


C
clevercong 已提交
1016
### getRemoteAddress
C
clevercong 已提交
1017 1018 1019 1020 1021 1022

getRemoteAddress\(\): Promise<NetAddress\>

获取对端Socket地址。使用Promise方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
C
clevercong 已提交
1023 1024 1025
>[connect](#connect)方法调用成功后,才可调用此方法。

**需要权限**:ohos.permission.INTERNET
C
clevercong 已提交
1026

C
clevercong 已提交
1027
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1028

C
clevercong 已提交
1029
**返回值:**
C
clevercong 已提交
1030

C
clevercong 已提交
1031 1032
| 类型                                        | 说明                                        |
| :------------------------------------------ | :------------------------------------------ |
C
clevercong 已提交
1033
| Promise<[NetAddress](#netaddress)> | 以Promise形式返回获取对端socket地址的结果。 |
C
clevercong 已提交
1034

C
clevercong 已提交
1035
**示例:**
C
clevercong 已提交
1036

Z
zengyawen 已提交
1037
```js
C
clevercong 已提交
1038 1039 1040 1041 1042 1043
let tcp = socket.constructTCPSocketInstance();
let promise1 = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise1.then(() => {
  console.log('connect success');
  let promise2 = tcp.getRemoteAddress();
  promise2.then(() => {
F
fuchao 已提交
1044
	console.log('getRemoteAddress success');
C
clevercong 已提交
1045 1046 1047 1048 1049 1050 1051
  }).catch(err => {
	console.log('getRemoteAddressfail');
  });
}).catch(err => {
  console.log('connect fail');
});
```
C
clevercong 已提交
1052 1053


C
clevercong 已提交
1054
### getState
C
clevercong 已提交
1055 1056 1057 1058 1059 1060

getState\(callback: AsyncCallback<SocketStateBase\>\): void

获取TCPSocket状态。使用callback方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
C
clevercong 已提交
1061 1062 1063
>[bind](#bind)或[connect](#connect)方法调用成功后,才可调用此方法。

**需要权限**:ohos.permission.INTERNET
C
clevercong 已提交
1064

C
clevercong 已提交
1065
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1066

C
clevercong 已提交
1067
**参数:**
C
clevercong 已提交
1068

C
clevercong 已提交
1069 1070
| 参数名   | 类型                                                   | 必填 | 说明       |
| -------- | ------------------------------------------------------ | ---- | ---------- |
C
clevercong 已提交
1071
| callback | AsyncCallback<[SocketStateBase](#socketstatebase)> | 是   | 回调函数。 |
C
clevercong 已提交
1072 1073


C
clevercong 已提交
1074
**示例:**
C
clevercong 已提交
1075

Z
zengyawen 已提交
1076
```js
C
clevercong 已提交
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise.then(() => {
  console.log('connect success');
  tcp.getState((err, data) => {
	if (err) {
	  console.log('getState fail');
	  return;
	}
	console.log('getState success:' + JSON.stringify(data));
  });
}).catch(err => {
  console.log('connect fail');
});
```
C
clevercong 已提交
1092 1093


C
clevercong 已提交
1094
### getState
C
clevercong 已提交
1095 1096 1097 1098 1099 1100

getState\(\): Promise<SocketStateBase\>

获取TCPSocket状态。使用Promise方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
C
clevercong 已提交
1101 1102 1103
>[bind](#bind)或[connect](#connect)方法调用成功后,才可调用此方法。

**需要权限**:ohos.permission.INTERNET
C
clevercong 已提交
1104

C
clevercong 已提交
1105
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1106

C
clevercong 已提交
1107
**返回值:**
C
clevercong 已提交
1108

C
clevercong 已提交
1109 1110
| 类型                                             | 说明                                       |
| :----------------------------------------------- | :----------------------------------------- |
C
clevercong 已提交
1111
| Promise<[SocketStateBase](#socketstatebase)> | 以Promise形式返回获取TCPSocket状态的结果。 |
C
clevercong 已提交
1112 1113


C
clevercong 已提交
1114
**示例:**
C
clevercong 已提交
1115

Z
zengyawen 已提交
1116
```js
C
clevercong 已提交
1117 1118 1119 1120 1121 1122
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise.then(() => {
  console.log('connect success');
  let promise1 = tcp.getState();
  promise1.then(() => {
F
fuchao 已提交
1123
	console.log('getState success');
C
clevercong 已提交
1124 1125 1126 1127 1128 1129 1130
  }).catch(err => {
	console.log('getState fail');
  });
}).catch(err => {
  console.log('connect fail');
});
```
C
clevercong 已提交
1131 1132


C
clevercong 已提交
1133
### setExtraOptions
C
clevercong 已提交
1134 1135 1136 1137 1138 1139

setExtraOptions\(options: TCPExtraOptions, callback: AsyncCallback<void\>\): void

设置TCPSocket连接的其他属性。使用callback方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
C
clevercong 已提交
1140 1141 1142
>[bind](#bind)或[connect](#connect)方法调用成功后,才可调用此方法。

**需要权限**:ohos.permission.INTERNET
C
clevercong 已提交
1143

C
clevercong 已提交
1144
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1145

C
clevercong 已提交
1146 1147 1148 1149
**参数:**

| 参数名   | 类型                                      | 必填 | 说明                                                         |
| -------- | ----------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
1150
| options  | [TCPExtraOptions](#tcpextraoptions) | 是   | TCPSocket连接的其他属性,参考[TCPExtraOptions](#tcpextraoptions)。 |
C
clevercong 已提交
1151 1152 1153 1154
| callback | AsyncCallback\<void\>                     | 是   | 回调函数。                                                   |

**示例:**

Z
zengyawen 已提交
1155
```js
C
clevercong 已提交
1156 1157 1158 1159 1160 1161 1162 1163
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise.then(() => {
  console.log('connect success');
  tcp.setExtraOptions({
	keepAlive: true,
	OOBInline: true,
	TCPNoDelay: true,
C
clevercong 已提交
1164
	socketLinger: { on:true, linger:10 },
C
clevercong 已提交
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
	receiveBufferSize: 1000,
	sendBufferSize: 1000,
	reuseAddress: true,
	socketTimeout: 3000,
  },err => {
	if (err) {
	  console.log('setExtraOptions fail');
	  return;
	}
	console.log('setExtraOptions success');
  });
}).catch(err => {
  console.log('connect fail');
});
```
C
clevercong 已提交
1180 1181


C
clevercong 已提交
1182
### setExtraOptions
C
clevercong 已提交
1183 1184 1185 1186 1187 1188

setExtraOptions\(options: TCPExtraOptions\): Promise<void\>

设置TCPSocket连接的其他属性,使用Promise方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
C
clevercong 已提交
1189 1190 1191
>[bind](#bind)或[connect](#connect)方法调用成功后,才可调用此方法。

**需要权限**:ohos.permission.INTERNET
C
clevercong 已提交
1192

C
clevercong 已提交
1193
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1194

C
clevercong 已提交
1195 1196 1197 1198
**参数:**

| 参数名  | 类型                                      | 必填 | 说明                                                         |
| ------- | ----------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
1199
| options | [TCPExtraOptions](#tcpextraoptions) | 是   | TCPSocket连接的其他属性,参考[TCPExtraOptions](#tcpextraoptions)。 |
C
clevercong 已提交
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209

**返回值:**

| 类型            | 说明                                                 |
| :-------------- | :--------------------------------------------------- |
| Promise\<void\> | 以Promise形式返回设置TCPSocket连接的其他属性的结果。 |


**示例:**

Z
zengyawen 已提交
1210
```js
C
clevercong 已提交
1211 1212 1213 1214 1215 1216 1217 1218
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise.then(() => {
  console.log('connect success');
  let promise1 = tcp.setExtraOptions({
	keepAlive: true,
	OOBInline: true,
	TCPNoDelay: true,
C
clevercong 已提交
1219
	socketLinger: { on:true, linger:10 },
C
clevercong 已提交
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233
	receiveBufferSize: 1000,
	sendBufferSize: 1000,
	reuseAddress: true,
	socketTimeout: 3000,
  });
  promise1.then(() => {
	console.log('setExtraOptions success');
  }).catch(err => {
	console.log('setExtraOptions fail');
  });
}).catch(err => {
  console.log('connect fail');
});
```
C
clevercong 已提交
1234 1235


C
clevercong 已提交
1236
### on\('message'\)
C
clevercong 已提交
1237 1238 1239 1240 1241

on\(type: 'message', callback: Callback<\{message: ArrayBuffer, remoteInfo: SocketRemoteInfo\}\>\): void

订阅TCPSocket连接的接收消息事件。使用callback方式作为异步方法。

C
clevercong 已提交
1242
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1243

C
clevercong 已提交
1244
**参数:**
C
clevercong 已提交
1245

C
clevercong 已提交
1246 1247 1248
| 参数名   | 类型                                                         | 必填 | 说明                                      |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
| type     | string                                                       | 是   | 订阅的事件类型。'message':接收消息事件。 |
C
clevercong 已提交
1249
| callback | Callback<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo)}> | 是   | 回调函数。                                |
C
clevercong 已提交
1250

C
clevercong 已提交
1251
**示例:**
C
clevercong 已提交
1252

Z
zengyawen 已提交
1253
```js
C
clevercong 已提交
1254 1255 1256 1257 1258
let tcp = socket.constructTCPSocketInstance();
tcp.on('message', value => {
	console.log("on message, message:" + value.message + ", remoteInfo:" + value.remoteInfo)
});
```
C
clevercong 已提交
1259 1260


C
clevercong 已提交
1261
### off\('message'\)
C
clevercong 已提交
1262 1263 1264 1265 1266 1267 1268 1269

off\(type: 'message', callback?: Callback<\{message: ArrayBuffer, remoteInfo: SocketRemoteInfo\}\>\): void

取消订阅TCPSocket连接的接收消息事件。使用callback方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
>可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

C
clevercong 已提交
1270
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1271

C
clevercong 已提交
1272
**参数:**
C
clevercong 已提交
1273

C
clevercong 已提交
1274 1275 1276
| 参数名   | 类型                                                         | 必填 | 说明                                      |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
| type     | string                                                       | 是   | 订阅的事件类型。'message':接收消息事件。 |
C
clevercong 已提交
1277
| callback | Callback<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo)}> | 否   | 回调函数。                                |
C
clevercong 已提交
1278

C
clevercong 已提交
1279
**示例:**
C
clevercong 已提交
1280

Z
zengyawen 已提交
1281
```js
C
clevercong 已提交
1282 1283 1284 1285 1286 1287 1288 1289 1290
let tcp = socket.constructTCPSocketInstance();
let callback = value =>{
	console.log("on message, message:" + value.message + ", remoteInfo:" + value.remoteInfo);
}
tcp.on('message', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tcp.off('message', callback);
tcp.off('message');
```
C
clevercong 已提交
1291 1292


C
clevercong 已提交
1293
### on\('connect' | 'close'\)
C
clevercong 已提交
1294 1295 1296 1297 1298

on\(type: 'connect' | 'close', callback: Callback<void\>\): void

订阅TCPSocket的连接事件或关闭事件。使用callback方式作为异步方法。

C
clevercong 已提交
1299
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1300

C
clevercong 已提交
1301
**参数:**
C
clevercong 已提交
1302

C
clevercong 已提交
1303 1304 1305 1306
| 参数名   | 类型             | 必填 | 说明                                                         |
| -------- | ---------------- | ---- | ------------------------------------------------------------ |
| type     | string           | 是   | 订阅的事件类型。<br />- 'connect':连接事件。<br />- 'close':关闭事件。 |
| callback | Callback\<void\> | 是   | 回调函数。                                                   |
C
clevercong 已提交
1307 1308


C
clevercong 已提交
1309
**示例:**
C
clevercong 已提交
1310

Z
zengyawen 已提交
1311
```js
C
clevercong 已提交
1312 1313 1314 1315 1316 1317 1318 1319
let tcp = socket.constructTCPSocketInstance();
tcp.on('connect', () => {
	console.log("on connect success")
});
tcp.on('close', data => {
	console.log("on close success")
});
```
C
clevercong 已提交
1320 1321


C
clevercong 已提交
1322
### off\('connect' | 'close'\)
C
clevercong 已提交
1323

C
clevercong 已提交
1324
off\(type: 'connect' | 'close', callback?: Callback<void\>\): void
C
clevercong 已提交
1325 1326 1327 1328 1329 1330

取消订阅TCPSocket的连接事件或关闭事件。使用callback方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
>可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

C
clevercong 已提交
1331
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1332

C
clevercong 已提交
1333 1334 1335 1336 1337 1338 1339 1340 1341
**参数:**

| 参数名   | 类型             | 必填 | 说明                                                         |
| -------- | ---------------- | ---- | ------------------------------------------------------------ |
| type     | string           | 是   | 订阅的事件类型。<br />- 'connect':连接事件。<br />- 'close':关闭事件。 |
| callback | Callback\<void\> | 否   | 回调函数。                                                   |

**示例:**

Z
zengyawen 已提交
1342
```js
C
clevercong 已提交
1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
let tcp = socket.constructTCPSocketInstance();
let callback1 = () =>{
	console.log("on connect success");
}
tcp.on('connect', callback1);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tcp.off('connect', callback1);
tcp.off('connect');
let callback2 = () =>{
	console.log("on close success");
}
tcp.on('close', callback2);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tcp.off('close', callback2);
tcp.off('close');
```
C
clevercong 已提交
1359 1360


C
clevercong 已提交
1361
### on\('error'\)
C
clevercong 已提交
1362 1363 1364 1365 1366

on\(type: 'error', callback: ErrorCallback\): void

订阅TCPSocket连接的error事件。使用callback方式作为异步方法。

C
clevercong 已提交
1367
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1368

C
clevercong 已提交
1369
**参数:**
C
clevercong 已提交
1370

C
clevercong 已提交
1371 1372 1373 1374
| 参数名   | 类型          | 必填 | 说明                                 |
| -------- | ------------- | ---- | ------------------------------------ |
| type     | string        | 是   | 订阅的事件类型。'error':error事件。 |
| callback | ErrorCallback | 是   | 回调函数。                           |
C
clevercong 已提交
1375

C
clevercong 已提交
1376
**示例:**
C
clevercong 已提交
1377

Z
zengyawen 已提交
1378
```js
C
clevercong 已提交
1379 1380 1381 1382 1383
let tcp = socket.constructTCPSocketInstance();
tcp.on('error', err => {
	console.log("on error, err:" + JSON.stringify(err))
});
```
C
clevercong 已提交
1384 1385


C
clevercong 已提交
1386
### off\('error'\)
C
clevercong 已提交
1387 1388 1389 1390 1391 1392 1393 1394

off\(type: 'error', callback?: ErrorCallback\): void

取消订阅TCPSocket连接的error事件。使用callback方式作为异步方法。

>![](public_sys-resources/icon-note.gif) **说明:** 
>可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

C
clevercong 已提交
1395
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1396

C
clevercong 已提交
1397 1398 1399 1400 1401 1402 1403 1404 1405
**参数:**

| 参数名   | 类型          | 必填 | 说明                                 |
| -------- | ------------- | ---- | ------------------------------------ |
| type     | string        | 是   | 订阅的事件类型。'error':error事件。 |
| callback | ErrorCallback | 否   | 回调函数。                           |

**示例:**

Z
zengyawen 已提交
1406
```js
C
clevercong 已提交
1407 1408 1409 1410 1411 1412 1413 1414 1415
let tcp = socket.constructTCPSocketInstance();
let callback = err =>{
	console.log("on error, err:" + JSON.stringify(err));
}
tcp.on('error', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tcp.off('error', callback);
tcp.off('error');
```
C
clevercong 已提交
1416 1417


C
clevercong 已提交
1418
## TCPConnectOptions
C
clevercong 已提交
1419 1420 1421

TCPSocket连接的参数。

C
clevercong 已提交
1422 1423
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetStack。

L
liyufan 已提交
1424
| 名称  | 类型                               | 必填 | 说明                       |
C
clevercong 已提交
1425
| ------- | ---------------------------------- | ---- | -------------------------- |
C
clevercong 已提交
1426
| address | [NetAddress](#netaddress) | 是   | 绑定的地址以及端口。       |
C
clevercong 已提交
1427 1428
| timeout | number                             | 否   | 超时时间,单位毫秒(ms)。 |

C
clevercong 已提交
1429
## TCPSendOptions
C
clevercong 已提交
1430 1431 1432

TCPSocket发送请求的参数。

C
clevercong 已提交
1433 1434
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetStack。

L
liyufan 已提交
1435
| 名称   | 类型   | 必填 | 说明                                                         |
C
clevercong 已提交
1436
| -------- | ------ | ---- | ------------------------------------------------------------ |
Z
zhuwenchao 已提交
1437
| data     | string\| ArrayBuffer<sup>7+</sup>  | 是   | 发送的数据。                                                 |
C
clevercong 已提交
1438 1439
| encoding | string | 否   | 字符编码(UTF-8,UTF-16BE,UTF-16LE,UTF-16,US-AECII,ISO-8859-1),默认为UTF-8。 |

C
clevercong 已提交
1440
## TCPExtraOptions
C
clevercong 已提交
1441 1442 1443

TCPSocket连接的其他属性。

C
clevercong 已提交
1444 1445
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.NetStack。

L
liyufan 已提交
1446
| 名称            | 类型    | 必填 | 说明                                                         |
C
clevercong 已提交
1447 1448 1449 1450 1451 1452 1453 1454 1455
| ----------------- | ------- | ---- | ------------------------------------------------------------ |
| keepAlive         | boolean | 否   | 是否保持连接。默认为false。                                  |
| OOBInline         | boolean | 否   | 是否为OOB内联。默认为false。                                 |
| TCPNoDelay        | boolean | 否   | TCPSocket连接是否无时延。默认为false。                       |
| socketLinger      | Object  | 是   | socket是否继续逗留。<br />- on:是否逗留(true:逗留;false:不逗留)。<br />- linger:逗留时长,单位毫秒(ms),取值范围为0~65535。<br />当入参on设置为true时,才需要设置。 |
| receiveBufferSize | number  | 否   | 接收缓冲区大小(单位:Byte)。                               |
| sendBufferSize    | number  | 否   | 发送缓冲区大小(单位:Byte)。                               |
| reuseAddress      | boolean | 否   | 是否重用地址。默认为false。                                  |
| socketTimeout     | number  | 否   | 套接字超时时间,单位毫秒(ms)。                             |
L
liyufan 已提交
1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500

## socket.constructTLSSocketInstance<sup>9+</sup>

constructTLSSocketInstance(): TLSSocket

创建并返回一个TLSSocket对象。

**系统能力**:SystemCapability.Communication.NetStack

**返回值:**

| 类型                               | 说明                    |
| :--------------------------------- | :---------------------- |
| [TLSSocket](#tlssocket9) | 返回一个TLSSocket对象。 |

**示例:**

```js
let tls = socket.constructTLSSocketInstance();
```

## TLSSocket<sup>9+</sup>

TLSSocket连接。在调用TLSSocket的方法前,需要先通过[socket.constructTLSSocketInstance](#socketconstructtlssocketinstance9)创建TLSSocket对象。

### bind<sup>9+</sup>

bind\(address: NetAddress, callback: AsyncCallback<void\>\): void

绑定IP地址和端口。使用callback方法作为异步方法。

**需要权限**:ohos.permission.INTERNET

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                               | 必填 | 说明                                                   |
| -------- | ---------------------------------- | ---- | ------------------------------------------------------ |
| address  | [NetAddress](#netaddress) | 是   | 目标地址信息,参考[NetAddress](#netaddress)。 |
| callback | AsyncCallback\<void\>              | 是   | 回调函数。成功返回TLSSocket绑定本机的IP地址和端口的结果。 失败返回错误码,错误信息。|

**错误码:**

| 错误码ID | 错误信息                 |
L
liyufan 已提交
1501
| ------- | ----------------------- |
L
liyufan 已提交
1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533
| 401     | Parameter error.        |
| 201     | Permission denied.      |
| 2303198 | Address already in use. |
| 2300002 | System internal error.  |

**示例:**

```js
let tls = socket.constructTLSSocketInstance();
tls.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});
```

### bind<sup>9+</sup>

bind\(address: NetAddress\): Promise<void\>

绑定IP地址和端口。使用Promise方法作为异步方法。

**需要权限**:ohos.permission.INTERNET

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名  | 类型                               | 必填 | 说明                                                   |
| ------- | ---------------------------------- | ---- | ------------------------------------------------------ |
L
liyufan 已提交
1534
| address | [NetAddress](#netaddress)          | 是   | 目标地址信息,参考[NetAddress](#netaddress)。 |
L
liyufan 已提交
1535 1536 1537 1538 1539 1540 1541 1542 1543 1544

**返回值:**

| 类型            | 说明                                                     |
| :-------------- | :------------------------------------------------------- |
| Promise\<void\> | 以Promise形式返回TLSSocket绑定本机的IP地址和端口的结果。失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                 |
L
liyufan 已提交
1545
| ------- | ----------------------- |
L
liyufan 已提交
1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
| 401     | Parameter error.        |
| 201     | Permission denied.      |
| 2303198 | Address already in use. |
| 2300002 | System internal error.  |

**示例:**

```js
let tls = socket.constructTLSSocketInstance();
let promise = tls.bind({address: '192.168.xx.xxx', port: xxxx, family: 1});
promise.then(() => {
  console.log('bind success');
}).catch(err => {
  console.log('bind fail');
});
```

### getState<sup>9+</sup>

getState\(callback: AsyncCallback<SocketStateBase\>\): void

在TLSSocket的bind成功之后,获取TLSSocket状态。使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                                   | 必填 | 说明       |
| -------- | ------------------------------------------------------ | ---- | ---------- |
| callback | AsyncCallback\<[SocketStateBase](#socketstatebase)> | 是   | 回调函数。成功返回TLSSocket状态,失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
1580
| ------- | ------------------------------ |
L
liyufan 已提交
1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**示例:**

```js
let tls = socket.constructTLSSocketInstance();
let promise = tls.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});
tls.getState((err, data) => {
  if (err) {
    console.log('getState fail');
    return;
  }
  console.log('getState success:' + JSON.stringify(data));
});
```

### getState<sup>9+</sup>

getState\(\): Promise<SocketStateBase\>

在TLSSocket的bind成功之后,获取TLSSocket状态。使用Promise方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**返回值:**

| 类型                                             | 说明                                       |
| :----------------------------------------------- | :----------------------------------------- |
| Promise\<[SocketStateBase](#socketstatebase)> | 以Promise形式返回获取TLSSocket状态的结果。失败返回错误码,错误信息。|

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
1621
| ------- | ------------------------------ |
L
liyufan 已提交
1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**示例:**

```js
let tls = socket.constructTLSSocketInstance();
tls.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});
let promise = tls.getState();
promise.then(() => {
  console.log('getState success');
}).catch(err => {
  console.log('getState fail');
});
```

### setExtraOptions<sup>9+</sup>

setExtraOptions\(options: TCPExtraOptions, callback: AsyncCallback<void\>\): void

在TLSSocket的bind成功之后,设置TCPSocket连接的其他属性。使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                      | 必填 | 说明                                                         |
| -------- | ----------------------------------------- | ---- | ------------------------------------------------------------ |
| options  | [TCPExtraOptions](#tcpextraoptions) | 是   | TCPSocket连接的其他属性,参考[TCPExtraOptions](#tcpextraoptions)。 |
| callback | AsyncCallback\<void\>                     | 是   | 回调函数。成功返回设置TCPSocket连接的其他属性的结果,失败返回错误码,错误信息。|

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
1662
| ------- | -----------------------------  |
L
liyufan 已提交
1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719
| 401     | Parameter error.               |
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**示例:**

```js
let tls = socket.constructTLSSocketInstance();
tls.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});

tls.setExtraOptions({
  keepAlive: true,
  OOBInline: true,
  TCPNoDelay: true,
  socketLinger: { on:true, linger:10 },
  receiveBufferSize: 1000,
  sendBufferSize: 1000,
  reuseAddress: true,
  socketTimeout: 3000,
},err => {
  if (err) {
    console.log('setExtraOptions fail');
    return;
  }
  console.log('setExtraOptions success');
});
```

### setExtraOptions<sup>9+</sup>

setExtraOptions\(options: TCPExtraOptions\): Promise<void\>

在TLSSocket的bind成功之后,设置TCPSocket连接的其他属性,使用Promise方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名  | 类型                                      | 必填 | 说明                                                         |
| ------- | ----------------------------------------- | ---- | ------------------------------------------------------------ |
| options | [TCPExtraOptions](#tcpextraoptions) | 是   | TCPSocket连接的其他属性,参考[TCPExtraOptions](#tcpextraoptions)。 |

**返回值:**

| 类型            | 说明                                                 |
| :-------------- | :--------------------------------------------------- |
| Promise\<void\> | 以Promise形式返回设置TCPSocket连接的其他属性的结果。失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
1720
| ------- | ------------------------------ |
L
liyufan 已提交
1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770
| 401     | Parameter error.               |
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**示例:**

```js
let tls = socket.constructTLSSocketInstance();
tls.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});
let promise = tls.setExtraOptions({
  keepAlive: true,
  OOBInline: true,
  TCPNoDelay: true,
  socketLinger: { on:true, linger:10 },
  receiveBufferSize: 1000,
  sendBufferSize: 1000,
  reuseAddress: true,
  socketTimeout: 3000,
});
promise.then(() => {
  console.log('setExtraOptions success');
}).catch(err => {
  console.log('setExtraOptions fail');
});
```

### connect<sup>9+</sup>

connect(options: TLSConnectOptions, callback: AsyncCallback\<void>): void

在TLSSocket上bind成功之后,进行通信连接,并创建和初始化TLS会话,实现建立连接过程,启动与服务器的TLS/SSL握手,实现数据传输功能,使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                   | 必填 | 说明 |
| -------- | ---------------------------------------| ----| --------------- |
| options  | [TLSConnectOptions](#tlsconnectoptions9) | 是   | TLSSocket连接所需要的参数。|
| callback | AsyncCallback\<void>                  | 是   | 回调函数,成功无返回,失败返回错误码,错误信息。|

**错误码:**

| 错误码ID | 错误信息                                      |
L
liyufan 已提交
1771
| ------- | -------------------------------------------- |
L
liyufan 已提交
1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871
| 401     | Parameter error.                             |
| 2303104 | Interrupted system call.                     |
| 2303109 | Bad file number.                             |
| 2303111 | Resource temporarily unavailable try again.  |
| 2303113 | System permission denied.                    |
| 2303188 | Socket operation on non-socket.              |
| 2303191 | Protocol wrong type for socket.              |
| 2303198 | Address already in use.                      |
| 2303199 | Cannot assign requested address.             |
| 2303210 | Connection timed out.                        |
| 2303501 | SSL is null.                                 |
| 2303502 | Error in tls reading.                        |
| 2303503 | Error in tls writing                         |
| 2303505 | Error occurred in the tls system call.       |
| 2303506 | Error clearing tls connection.               |
| 2300002 | System internal error.                       |

**示例:**

```js
let tls = socket.constructTLSSocketInstance(); // Two way authentication
tls.bind({address: '192.168.xxx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});
let Protocol = socket.Protocol;
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: xxxx,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    passwd: "xxxx",
    protocols: [Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: rsa_pss_rsae_sha256:ECDSA+SHA25,
    cipherSuite: AES256-SHA256,
  },
};
tls.connect(options, (err, data) => {
  console.info(err);
  console.info(data);
});

let tlsOneWay = socket.constructTLSSocketInstance(); // One way authentication
tlsOneWay.bind({address: '192.168.xxx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});
let oneWayOptions = {
  address: {
    address: "192.168.xxx.xxx",
    port: xxxx,
    family: 1,
  },
  secureOptions: {
    ca: ["xxxx","xxxx"],
    cipherSuite: AES256-SHA256,
  },
};
tlsOneWay.connect(options, (err, data) => {
  console.info(err);
  console.info(data);
});
```

### connect<sup>9+</sup>

connect(options: TLSConnectOptions): Promise\<void>

在TLSSocket上bind成功之后,进行通信连接,并创建和初始化TLS会话,实现建立连接过程,启动与服务器的TLS/SSL握手,实现数据传输功能,该连接包括两种认证方式,单向认证与双向认证,使用Promise方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                   | 必填 | 说明 |
| -------- | --------------------------------------| ----| --------------- |
| options  | [TLSConnectOptions](#tlsconnectoptions9) | 是   | 连接所需要的参数。|

**返回值:**

| 类型                                        | 说明                          |
| ------------------------------------------- | ----------------------------- |
| Promise\<void>                              | 以Promise形式返回,成功无返回,失败返回错误码,错误信息。|

**错误码:**

| 错误码ID | 错误信息                                      |
L
liyufan 已提交
1872
| ------- | -------------------------------------------- |
L
liyufan 已提交
1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968
| 401     | Parameter error.                             |
| 2303104 | Interrupted system call.                     |
| 2303109 | Bad file number.                             |
| 2303111 | Resource temporarily unavailable try again.  |
| 2303113 | System permission denied.                    |
| 2303188 | Socket operation on non-socket.              |
| 2303191 | Protocol wrong type for socket.              |
| 2303198 | Address already in use.                      |
| 2303199 | Cannot assign requested address.             |
| 2303210 | Connection timed out.                        |
| 2303501 | SSL is null.                                 |
| 2303502 | Error in tls reading.                        |
| 2303503 | Error in tls writing                         |
| 2303505 | Error occurred in the tls system call.       |
| 2303506 | Error clearing tls connection.               |
| 2300002 | System internal error.                       |

**示例:**

```js
let tls = socket.constructTLSSocketInstance(); // Two way authentication
tls.bind({address: '192.168.xxx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});
let Protocol = socket.Protocol;
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: xxxx,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    passwd: "xxxx",
    protocols: [Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: rsa_pss_rsae_sha256:ECDSA+SHA25,
    cipherSuite: AES256-SHA256,
  },
};
tls.connect(options).then(data => {
  console.info(data);
}).catch(err => {
  console.error(err);
});

let tlsOneWay = socket.constructTLSSocketInstance(); // One way authentication
tlsOneWay.bind({address: '192.168.xxx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});
let oneWayOptions = {
  address: {
    address: "192.168.xxx.xxx",
    port: xxxx,
    family: 1,
  },
  secureOptions: {
    ca: ["xxxx","xxxx"],
    cipherSuite: AES256-SHA256,
  },
};
tlsOneWay.connect(oneWayOptions).then(data => {
  console.info(data);
}).catch(err => {
  console.error(err);
});
```

### getRemoteAddress<sup>9+</sup>

getRemoteAddress\(callback: AsyncCallback<NetAddress\>\): void

在TLSSocket通信连接成功之后,获取对端Socket地址。使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                              | 必填 | 说明       |
| -------- | ------------------------------------------------- | ---- | ---------- |
| callback | AsyncCallback\<[NetAddress](#netaddress)> | 是   | 回调函数。成功返回对端的socket地址,失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                        |
Y
YOUR_NAME 已提交
1969
| ------- | -----------------------------  |
L
liyufan 已提交
1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**示例:**

```js
tls.getRemoteAddress((err, data) => {
  if (err) {
    console.log('getRemoteAddress fail');
    return;
  }
  console.log('getRemoteAddress success:' + JSON.stringify(data));
});
```

### getRemoteAddress<sup>9+</sup>

getRemoteAddress\(\): Promise\<NetAddress>

在TLSSocket通信连接成功之后,获取对端Socket地址。使用Promise方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**返回值:**

| 类型                                        | 说明                                        |
| :------------------------------------------ | :------------------------------------------ |
| Promise\<[NetAddress](#netaddress)> | 以Promise形式返回获取对端socket地址的结果。失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                        |
Y
YOUR_NAME 已提交
2002
| ------- | ------------------------------ |
L
liyufan 已提交
2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**示例:**

```js
let promise = tls.getRemoteAddress();
promise.then(() => {
  console.log('getRemoteAddress success');
}).catch(err => {
  console.log('getRemoteAddress fail');
});
```

### getCertificate<sup>9+</sup>

getCertificate(callback: AsyncCallback\<[X509CertRawData](#x509certrawdata9)>): void

在TLSSocket通信连接成功之后,获取本地的数字证书,该接口只适用于双向认证时,使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                   | 必填 | 说明 |
| -------- | ----------------------------------------| ---- | ---------------|
| callback | AsyncCallback\<[X509CertRawData](#x509certrawdata9)>    | 是   | 回调函数,成功返回本地的证书,失败返回错误码,错误信息。|

**错误码:**

| 错误码ID | 错误信息                        |
Y
YOUR_NAME 已提交
2034
| ------- | ------------------------------ |
L
liyufan 已提交
2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067
| 2303501 | SSL is null.                   |
| 2303504 | Error looking up x509.         |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getCertificate((err, data) => {
  if (err) {
    console.log("getCertificate callback error = " + err);
  } else {
    console.log("getCertificate callback = " + data);
  }
});
```

### getCertificate<sup>9+</sup>

getCertificate():Promise\<[X509CertRawData](#x509certrawdata9)>

在TLSSocket通信连接之后,获取本地的数字证书,该接口只适用于双向认证时,使用Promise方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**返回值:**

| 类型            | 说明                  |
| -------------- | -------------------- |
| Promise\<[X509CertRawData](#x509certrawdata9)> | 以Promise形式返回本地的数字证书的结果。失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                        |
Y
YOUR_NAME 已提交
2068
| ------- | ------------------------------ |
L
liyufan 已提交
2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099
| 2303501 | SSL is null.                   |
| 2303504 | Error looking up x509.         |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getCertificate().then(data => {
  console.info(data);
}).catch(err => {
  console.error(err);
});
```

### getRemoteCertificate<sup>9+</sup>

getRemoteCertificate(callback: AsyncCallback\<[X509CertRawData](#x509certrawdata9)>): void

在TLSSocket通信连接成功之后,获取服务端的数字证书,使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名    | 类型                                    | 必填  | 说明           |
| -------- | ----------------------------------------| ---- | ---------------|
| callback | AsyncCallback\<[X509CertRawData](#x509certrawdata9)>  | 是   | 回调函数,返回服务端的证书。失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
2100
| ------- | ------------------------------ |
L
liyufan 已提交
2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132
| 2303501 | SSL is null.                   |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getRemoteCertificate((err, data) => {
  if (err) {
    console.log("getRemoteCertificate callback error = " + err);
  } else {
    console.log("getRemoteCertificate callback = " + data);
  }
});
```

### getRemoteCertificate<sup>9+</sup>

getRemoteCertificate():Promise\<[X509CertRawData](#x509certrawdata9)>

在TLSSocket通信连接成功之后,获取服务端的数字证书,使用Promise方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**返回值:**

| 类型            | 说明                  |
| -------------- | -------------------- |
| Promise\<[X509CertRawData](#x509certrawdata9)> | 以Promise形式返回服务端的数字证书的结果。失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
2133
| ------- | ------------------------------ |
L
liyufan 已提交
2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163
| 2303501 | SSL is null.                   |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getRemoteCertificate().then(data => {
  console.info(data);
}).catch(err => {
  console.error(err);
});
```

### getProtocol<sup>9+</sup>

getProtocol(callback: AsyncCallback\<string>): void

在TLSSocket通信连接成功之后,获取通信的协议版本,使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                       | 必填 | 说明           |
| -------- | ----------------------------------------| ---- | ---------------|
| callback | AsyncCallback\<string>                  | 是   | 回调函数,返回通信的协议。失败返回错误码,错误信息。|

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
2164
| ------- | -----------------------------  |
L
liyufan 已提交
2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197
| 2303501 | SSL is null.                   |
| 2303505 | Error occurred in the tls system call. |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getProtocol((err, data) => {
  if (err) {
    console.log("getProtocol callback error = " + err);
  } else {
    console.log("getProtocol callback = " + data);
  }
});
```

### getProtocol<sup>9+</sup>

getProtocol():Promise\<string>

在TLSSocket通信连接成功之后,获取通信的协议版本,使用Promise方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**返回值:**

| 类型            | 说明                  |
| -------------- | -------------------- |
| Promise\<string> | 以Promise形式返回通信的协议。失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
2198
| ------- | ------------------------------ |
L
liyufan 已提交
2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229
| 2303501 | SSL is null.                   |
| 2303505 | Error occurred in the tls system call. |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getProtocol().then(data => {
  console.info(data);
}).catch(err => {
  console.error(err);
});
```

### getCipherSuite<sup>9+</sup>

getCipherSuite(callback: AsyncCallback\<Array\<string>>): void

在TLSSocket通信连接成功之后,获取通信双方协商后的加密套件,使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                     | 必填 | 说明 |
| -------- | ----------------------------------------| ---- | ---------------|
| callback | AsyncCallback\<Array\<string>>          | 是   | 回调函数,返回通信双方支持的加密套件。 失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
2230
| ------- | ------------------------------ |
L
liyufan 已提交
2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264
| 2303501 | SSL is null.                   |
| 2303502 | Error in tls reading.          |
| 2303505 | Error occurred in the tls system call. |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getCipherSuite((err, data) => {
  if (err) {
    console.log("getCipherSuite callback error = " + err);
  } else {
    console.log("getCipherSuite callback = " + data);
  }
});
```

### getCipherSuite<sup>9+</sup>

getCipherSuite(): Promise\<Array\<string>>

在TLSSocket通信连接成功之后,获取通信双方协商后的加密套件,使用Promise方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**返回值:**

| 类型                    | 说明                  |
| ---------------------- | --------------------- |
| Promise\<Array\<string>> | 以Promise形式返回通信双方支持的加密套件。失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
2265
| ------- | ------------------------------ |
L
liyufan 已提交
2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297
| 2303501 | SSL is null.                   |
| 2303502 | Error in tls reading.          |
| 2303505 | Error occurred in the tls system call. |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getCipherSuite().then(data => {
  console.info(data);
}).catch(err => {
  console.error(err);
});
```

### getSignatureAlgorithms<sup>9+</sup>

getSignatureAlgorithms(callback: AsyncCallback\<Array\<string>>): void

在TLSSocket通信连接成功之后,获取通信双方协商后签名算法,该接口只适配双向认证模式下,使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                   | 必填 | 说明            |
| -------- | -------------------------------------| ---- | ---------------|
| callback | AsyncCallback\<Array\<string>>         | 是   | 回调函数,返回双方支持的签名算法。  |

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
2298
| ------- | ------------------------------ |
L
liyufan 已提交
2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330
| 2303501 | SSL is null.                   |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getSignatureAlgorithms((err, data) => {
  if (err) {
    console.log("getSignatureAlgorithms callback error = " + err);
  } else {
    console.log("getSignatureAlgorithms callback = " + data);
  }
});
```

### getSignatureAlgorithms<sup>9+</sup>

getSignatureAlgorithms(): Promise\<Array\<string>>

在TLSSocket通信连接成功之后,获取通信双方协商后的签名算法,该接口只适配双向认证模式下,使用Promise方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**返回值:**

| 类型                    | 说明                  |
| ---------------------- | -------------------- |
| Promise\<Array\<string>> | 以Promise形式返回获取到的双方支持的签名算法。 |

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
2331
| ------- | ------------------------------ |
L
liyufan 已提交
2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362
| 2303501 | SSL is null.                   |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getSignatureAlgorithms().then(data => {
  console.info(data);
}).catch(err => {
  console.error(err);
});
```

### send<sup>9+</sup>

send(data: string, callback: AsyncCallback\<void>): void

在TLSSocket通信连接成功之后,向服务端发送消息,使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名    | 类型                          | 必填 | 说明            |
| -------- | -----------------------------| ---- | ---------------|
|   data   | string                       | 是   | 发送的数据内容。   |
| callback | AsyncCallback\<void>         | 是   | 回调函数,返回TLSSocket发送数据的结果。失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                                      |
L
liyufan 已提交
2363
| ------- | -------------------------------------------- |
L
liyufan 已提交
2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399
| 401     | Parameter error.                             |
| 2303501 | SSL is null.                                 |
| 2303503 | Error in tls writing                         |
| 2303505 | Error occurred in the tls system call.       |
| 2303506 | Error clearing tls connection.               |
| 2300002 | System internal error.                       |

**示例:**

```js
tls.send("xxxx", (err) => {
  if (err) {
    console.log("send callback error = " + err);
  } else {
    console.log("send success");
  }
});
```

### send<sup>9+</sup>

send(data: string): Promise\<void>

在TLSSocket通信连接成功之后,向服务端发送消息,使用Promise方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名    | 类型                          | 必填 | 说明            |
| -------- | -----------------------------| ---- | ---------------|
|   data   | string                       | 是   | 发送的数据内容。   |

**错误码:**

| 错误码ID | 错误信息                                      |
L
liyufan 已提交
2400
| ------- | -------------------------------------------- |
L
liyufan 已提交
2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440
| 401     | Parameter error.                             |
| 2303501 | SSL is null.                                 |
| 2303503 | Error in tls writing                         |
| 2303505 | Error occurred in the tls system call.       |
| 2303506 | Error clearing tls connection.               |
| 2300002 | System internal error.                       |

**返回值:**

| 类型           | 说明                  |
| -------------- | -------------------- |
| Promise\<void> | 以Promise形式返回,返回TLSSocket发送数据的结果。失败返回错误码,错误信息。 |

**示例:**

```js
tls.send("xxxx").then(() =>{
  console.log("send success");
}).catch(err => {
  console.error(err);
});
```

### close<sup>9+</sup>

close(callback: AsyncCallback\<void>): void

在TLSSocket通信连接成功之后,断开连接,使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名    | 类型                          | 必填 | 说明            |
| -------- | -----------------------------| ---- | ---------------|
| callback | AsyncCallback\<void>         | 是   | 回调函数,成功返回TLSSocket关闭连接的结果。 失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                                      |
L
liyufan 已提交
2441
| ------- | -------------------------------------------- |
L
liyufan 已提交
2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475
| 2303501 | SSL is null.                                 |
| 2303505 | Error occurred in the tls system call.       |
| 2303506 | Error clearing tls connection.               |
| 2300002 | System internal error.                       |

**示例:**

```js
tls.close((err) => {
  if (err) {
    console.log("close callback error = " + err);
  } else {
    console.log("close success");
  }
});
```

### close<sup>9+</sup>

close(): Promise\<void>

在TLSSocket通信连接成功之后,断开连接,使用Promise方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**返回值:**

| 类型           | 说明                  |
| -------------- | -------------------- |
| Promise\<void> | 以Promise形式返回,返回TLSSocket关闭连接的结果。失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                                      |
L
liyufan 已提交
2476
| ------- | -------------------------------------------- |
L
liyufan 已提交
2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497
| 2303501 | SSL is null.                                 |
| 2303505 | Error occurred in the tls system call.       |
| 2303506 | Error clearing tls connection.               |
| 2300002 | System internal error.                       |

**示例:**

```js
tls.close().then(() =>{
  console.log("close success");
}).catch(err => {
  console.error(err);
});
```

## TLSConnectOptions<sup>9+</sup>

TLS连接的操作。

**系统能力**:SystemCapability.Communication.NetStack

L
liyufan 已提交
2498 2499 2500 2501 2502
| 名称          | 类型                                     | 必填 | 说明            |
| -------------- | ------------------------------------- | ---  |-------------- |
| address        | [NetAddress](#netaddress)             | 是  |  网关地址。       |
| secureOptions  | [TLSSecureOptions](#tlssecureoptions9) | 是 | TLS安全相关操作。|
| ALPNProtocols  | Array\<string>                         | 是 | ALPN协议。      |
L
liyufan 已提交
2503 2504 2505 2506 2507 2508 2509

## TLSSecureOptions<sup>9+</sup>

TLS安全相关操作,其中ca证书为必选参数,其他参数为可选参数。当本地证书cert和私钥key不为空时,开启双向验证模式。cert和key其中一项为空时,开启单向验证模式。

**系统能力**:SystemCapability.Communication.NetStack

L
liyufan 已提交
2510 2511 2512 2513 2514 2515 2516 2517 2518 2519
| 名称                 | 类型                                                    | 必填 | 说明                                |
| --------------------- | ------------------------------------------------------ | --- |----------------------------------- |
| ca                    | string \| Array\<string>                               | 是 | 服务端的ca证书,用于认证校验服务端的数字证书。|
| cert                  | string                                                  | 否 | 本地客户端的数字证书。                 |
| key                   | string                                                  | 否 | 本地数字证书的私钥。                   |
| passwd                | string                                                  | 否 | 读取私钥的密码。                      |
| protocols             | [Protocol](#protocol9) \|Array\<[Protocol](#protocol9)> | 否 | TLS的协议版本。                  |
| useRemoteCipherPrefer | boolean                                                 | 否 | 优先使用对等方的密码套件。          |
| signatureAlgorithms   | string                                                 | 否 | 通信过程中的签名算法。               |
| cipherSuite           | string                                                 | 否 | 通信过程中的加密套件。               |
L
liyufan 已提交
2520 2521 2522 2523 2524 2525 2526

## Protocol<sup>9+</sup>

TLS通信的协议版本。

**系统能力**:SystemCapability.Communication.NetStack

L
liyufan 已提交
2527 2528 2529 2530
| 名称      |    值    | 说明                |
| --------- | --------- |------------------ |
| TLSv12    | "TLSv1.2" | 使用TLSv1.2协议通信。 |
| TLSv13    | "TLSv1.3" | 使用TLSv1.3协议通信。 |
L
liyufan 已提交
2531 2532 2533 2534 2535 2536 2537

## X509CertRawData<sup>9+</sup>

存储证书的数据。

**系统能力**:SystemCapability.Communication.NetStack

L
liyufan 已提交
2538 2539 2540
| 类型                                                                   | 说明                   |
| --------------------------------------------------------------------- | --------------------- |
|[cryptoFramework.EncodingBlob](js-apis-cryptoFramework.md#EncodingBlob) | 存储证书的数据和编码格式 |