js-apis-socket.md 183.8 KB
Newer Older
1
# @ohos.net.socket (Socket连接)
C
clevercong 已提交
2

Y
Yangys 已提交
3 4
本模块提供利用Socket进行数据传输的能力,支持TCPSocket、UDPSocket、WebSocket和TLSSocket。

Y
Yangys 已提交
5
> **说明:**
C
clevercong 已提交
6
>
7
> 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
C
clevercong 已提交
8

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

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

X
xujie 已提交
15
## socket.constructUDPSocketInstance<sup>7+</sup>
C
clevercong 已提交
16

Y
Yangys 已提交
17
constructUDPSocketInstance(): UDPSocket
C
clevercong 已提交
18 19 20

创建一个UDPSocket对象。

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

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

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

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

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

X
xujie 已提交
35
## UDPSocket<sup>7+</sup>
C
clevercong 已提交
36

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

X
xujie 已提交
39
### bind<sup>7+</sup>
C
clevercong 已提交
40

Y
Yangys 已提交
41
bind(address: NetAddress, callback: AsyncCallback\<void\>): void
C
clevercong 已提交
42 43 44

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

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

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

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

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

Y
Yangys 已提交
56 57 58 59 60 61 62
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

C
clevercong 已提交
63
**示例:**
C
clevercong 已提交
64

Z
zengyawen 已提交
65
```js
C
clevercong 已提交
66
let udp = socket.constructUDPSocketInstance();
X
xujie 已提交
67
udp.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
Y
Yangys 已提交
68 69 70 71 72
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
C
clevercong 已提交
73 74
})
```
C
clevercong 已提交
75

X
xujie 已提交
76
### bind<sup>7+</sup>
C
clevercong 已提交
77

Y
Yangys 已提交
78
bind(address: NetAddress): Promise\<void\>
C
clevercong 已提交
79 80 81

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

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

C
clevercong 已提交
84
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
85

C
clevercong 已提交
86
**参数:**
C
clevercong 已提交
87

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

Y
Yangys 已提交
92 93 94 95 96 97
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |
C
clevercong 已提交
98

C
clevercong 已提交
99
**返回值:**
C
clevercong 已提交
100

C
clevercong 已提交
101 102 103
| 类型            | 说明                                       |
| :-------------- | :----------------------------------------- |
| Promise\<void\> | 以Promise形式异步返回UDPSocket绑定的结果。 |
C
clevercong 已提交
104

C
clevercong 已提交
105
**示例:**
C
clevercong 已提交
106

Z
zengyawen 已提交
107
```js
C
clevercong 已提交
108
let udp = socket.constructUDPSocketInstance();
Y
Yangys 已提交
109
let promise = udp.bind({ address: '192.168.xx.xxx', port: 8080, family: 1 });
Y
Yangys 已提交
110
promise.then(() => {
Y
Yangys 已提交
111
  console.log('bind success');
C
clevercong 已提交
112
}).catch(err => {
Y
Yangys 已提交
113
  console.log('bind fail');
C
clevercong 已提交
114 115
});
```
C
clevercong 已提交
116

X
xujie 已提交
117
### send<sup>7+</sup>
C
clevercong 已提交
118

Y
Yangys 已提交
119
send(options: UDPSendOptions, callback: AsyncCallback\<void\>): void
C
clevercong 已提交
120 121 122

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

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

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

C
clevercong 已提交
127
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
128

C
clevercong 已提交
129 130 131 132
**参数:**

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

Y
Yangys 已提交
136 137 138 139 140 141 142
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

C
clevercong 已提交
143 144
**示例:**

Z
zengyawen 已提交
145
```js
C
clevercong 已提交
146 147
let udp = socket.constructUDPSocketInstance();
udp.send({
Y
Yangys 已提交
148 149 150 151 152 153
  data: 'Hello, server!',
  address: {
    address: '192.168.xx.xxx',
    port: xxxx,
    family: 1
  }
Y
Yangys 已提交
154
}, err => {
Y
Yangys 已提交
155 156 157 158 159
  if (err) {
    console.log('send fail');
    return;
  }
  console.log('send success');
C
clevercong 已提交
160 161
})
```
C
clevercong 已提交
162

X
xujie 已提交
163
### send<sup>7+</sup>
C
clevercong 已提交
164

Y
Yangys 已提交
165
send(options: UDPSendOptions): Promise\<void\>
C
clevercong 已提交
166 167 168

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

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

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

C
clevercong 已提交
173
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
174

C
clevercong 已提交
175
**参数:**
C
clevercong 已提交
176

C
clevercong 已提交
177 178
| 参数名  | 类型                                     | 必填 | 说明                                                         |
| ------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
179
| options | [UDPSendOptions](#udpsendoptions) | 是   | UDPSocket发送参数,参考[UDPSendOptions](#udpsendoptions)。 |
C
clevercong 已提交
180

Y
Yangys 已提交
181 182 183 184 185 186 187
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

C
clevercong 已提交
188
**返回值:**
C
clevercong 已提交
189

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

C
clevercong 已提交
194
**示例:**
C
clevercong 已提交
195

Z
zengyawen 已提交
196
```js
C
clevercong 已提交
197 198
let udp = socket.constructUDPSocketInstance();
let promise = udp.send({
Y
Yangys 已提交
199 200 201 202 203 204
  data: 'Hello, server!',
  address: {
    address: '192.168.xx.xxx',
    port: xxxx,
    family: 1
  }
C
clevercong 已提交
205 206
});
promise.then(() => {
Y
Yangys 已提交
207
  console.log('send success');
C
clevercong 已提交
208
}).catch(err => {
Y
Yangys 已提交
209
  console.log('send fail');
C
clevercong 已提交
210 211
});
```
C
clevercong 已提交
212

X
xujie 已提交
213
### close<sup>7+</sup>
C
clevercong 已提交
214

Y
Yangys 已提交
215
close(callback: AsyncCallback\<void\>): void
C
clevercong 已提交
216 217 218

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

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

C
clevercong 已提交
221
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
222

C
clevercong 已提交
223
**参数:**
C
clevercong 已提交
224

C
clevercong 已提交
225 226 227
| 参数名   | 类型                  | 必填 | 说明       |
| -------- | --------------------- | ---- | ---------- |
| callback | AsyncCallback\<void\> | 是   | 回调函数。 |
C
clevercong 已提交
228

C
clevercong 已提交
229
**示例:**
C
clevercong 已提交
230

Z
zengyawen 已提交
231
```js
C
clevercong 已提交
232 233
let udp = socket.constructUDPSocketInstance();
udp.close(err => {
Y
Yangys 已提交
234 235 236 237 238
  if (err) {
    console.log('close fail');
    return;
  }
  console.log('close success');
C
clevercong 已提交
239 240
})
```
C
clevercong 已提交
241

X
xujie 已提交
242
### close<sup>7+</sup>
C
clevercong 已提交
243

Y
Yangys 已提交
244
close(): Promise\<void\>
C
clevercong 已提交
245 246 247

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

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

C
clevercong 已提交
250
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
251

C
clevercong 已提交
252
**返回值:**
C
clevercong 已提交
253

C
clevercong 已提交
254 255 256
| 类型            | 说明                                       |
| :-------------- | :----------------------------------------- |
| Promise\<void\> | 以Promise形式返回关闭UDPSocket连接的结果。 |
C
clevercong 已提交
257

C
clevercong 已提交
258
**示例:**
C
clevercong 已提交
259

Z
zengyawen 已提交
260
```js
C
clevercong 已提交
261 262 263
let udp = socket.constructUDPSocketInstance();
let promise = udp.close();
promise.then(() => {
Y
Yangys 已提交
264
  console.log('close success');
C
clevercong 已提交
265
}).catch(err => {
Y
Yangys 已提交
266
  console.log('close fail');
C
clevercong 已提交
267 268
});
```
C
clevercong 已提交
269

X
xujie 已提交
270
### getState<sup>7+</sup>
C
clevercong 已提交
271

Y
Yangys 已提交
272
getState(callback: AsyncCallback\<SocketStateBase\>): void
C
clevercong 已提交
273 274 275

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

Y
Yangys 已提交
276 277
> **说明:**
> bind方法调用成功后,才可调用此方法。
C
clevercong 已提交
278 279

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

C
clevercong 已提交
281
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
282

C
clevercong 已提交
283 284 285 286
**参数:**

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

Y
Yangys 已提交
289 290 291 292 293 294
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 201     | Permission denied.      |

C
clevercong 已提交
295 296
**示例:**

Z
zengyawen 已提交
297
```js
C
clevercong 已提交
298 299
let udp = socket.constructUDPSocketInstance();
udp.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
Y
Yangys 已提交
300 301 302 303 304 305
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
  udp.getState((err, data) => {
Y
Yangys 已提交
306
    if (err) {
Y
Yangys 已提交
307 308
      console.log('getState fail');
      return;
Y
Yangys 已提交
309
    }
Y
Yangys 已提交
310 311
    console.log('getState success:' + JSON.stringify(data));
  })
C
clevercong 已提交
312 313
})
```
C
clevercong 已提交
314

X
xujie 已提交
315
### getState<sup>7+</sup>
C
clevercong 已提交
316

Y
Yangys 已提交
317
getState(): Promise\<SocketStateBase\>
C
clevercong 已提交
318 319 320

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

Y
Yangys 已提交
321 322
> **说明:**
> bind方法调用成功后,才可调用此方法。
C
clevercong 已提交
323 324

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

C
clevercong 已提交
326
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
327

C
clevercong 已提交
328
**返回值:**
C
clevercong 已提交
329

C
clevercong 已提交
330 331
| 类型                                             | 说明                                       |
| :----------------------------------------------- | :----------------------------------------- |
Y
Yangys 已提交
332
| Promise\<[SocketStateBase](#socketstatebase)\> | 以Promise形式返回获取UDPSocket状态的结果。 |
C
clevercong 已提交
333

C
clevercong 已提交
334
**示例:**
C
clevercong 已提交
335

Z
zengyawen 已提交
336
```js
C
clevercong 已提交
337
let udp = socket.constructUDPSocketInstance();
Y
Yangys 已提交
338
let promise = udp.bind({ address: '192.168.xx.xxx', port: xxxx, family: 1 });
Y
Yangys 已提交
339
promise.then(err => {
Y
Yangys 已提交
340 341 342 343 344 345 346 347 348 349 350
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
  let promise = udp.getState();
  promise.then(data => {
    console.log('getState success:' + JSON.stringify(data));
  }).catch(err => {
    console.log('getState fail');
  });
Y
Yangys 已提交
351
});
C
clevercong 已提交
352
```
C
clevercong 已提交
353

X
xujie 已提交
354
### setExtraOptions<sup>7+</sup>
C
clevercong 已提交
355

Y
Yangys 已提交
356
setExtraOptions(options: UDPExtraOptions, callback: AsyncCallback\<void\>): void
C
clevercong 已提交
357 358 359

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

Y
Yangys 已提交
360 361
> **说明:**
> bind方法调用成功后,才可调用此方法。
C
clevercong 已提交
362 363

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

C
clevercong 已提交
365
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
366

C
clevercong 已提交
367 368 369 370
**参数:**

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

Y
Yangys 已提交
374 375 376 377 378 379
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |
C
clevercong 已提交
380 381 382

**示例:**

Z
zengyawen 已提交
383
```js
C
clevercong 已提交
384
let udp = socket.constructUDPSocketInstance();
Y
Yangys 已提交
385
udp.bind({ address: '192.168.xx.xxx', port: xxxx, family: 1 }, err => {
Y
Yangys 已提交
386 387 388 389 390 391 392 393 394 395 396 397
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
  udp.setExtraOptions({
    receiveBufferSize: 1000,
    sendBufferSize: 1000,
    reuseAddress: false,
    socketTimeout: 6000,
    broadcast: true
  }, err => {
Y
Yangys 已提交
398
    if (err) {
Y
Yangys 已提交
399 400
      console.log('setExtraOptions fail');
      return;
Y
Yangys 已提交
401
    }
Y
Yangys 已提交
402 403
    console.log('setExtraOptions success');
  })
C
clevercong 已提交
404 405
})
```
C
clevercong 已提交
406

X
xujie 已提交
407
### setExtraOptions<sup>7+</sup>
C
clevercong 已提交
408

Y
Yangys 已提交
409
setExtraOptions(options: UDPExtraOptions): Promise\<void\>
C
clevercong 已提交
410 411 412

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

Y
Yangys 已提交
413 414
> **说明:**
> bind方法调用成功后,才可调用此方法。
C
clevercong 已提交
415 416

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

C
clevercong 已提交
418
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
419

C
clevercong 已提交
420 421 422 423
**参数:**

| 参数名  | 类型                                     | 必填 | 说明                                                         |
| ------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
424
| options | [UDPExtraOptions](#udpextraoptions) | 是   | UDPSocket连接的其他属性,参考[UDPExtraOptions](#udpextraoptions)。 |
C
clevercong 已提交
425 426 427 428 429 430 431

**返回值:**

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

Y
Yangys 已提交
432 433 434 435 436 437 438
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

C
clevercong 已提交
439 440
**示例:**

Z
zengyawen 已提交
441
```js
C
clevercong 已提交
442
let udp = socket.constructUDPSocketInstance();
Y
Yangys 已提交
443
let promise = udp.bind({ address: '192.168.xx.xxx', port: xxxx, family: 1 });
C
clevercong 已提交
444
promise.then(() => {
Y
Yangys 已提交
445 446 447 448 449 450 451 452 453 454 455 456 457
  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');
  });
C
clevercong 已提交
458
}).catch(err => {
Y
Yangys 已提交
459
  console.log('bind fail');
C
clevercong 已提交
460 461
});
```
C
clevercong 已提交
462

X
xujie 已提交
463
### on('message')<sup>7+</sup>
C
clevercong 已提交
464

Y
Yangys 已提交
465
on(type: 'message', callback: Callback\<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}\>): void
C
clevercong 已提交
466 467 468

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

C
clevercong 已提交
469
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
470

C
clevercong 已提交
471
**参数:**
C
clevercong 已提交
472

C
clevercong 已提交
473 474 475
| 参数名   | 类型                                                         | 必填 | 说明                                      |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
| type     | string                                                       | 是   | 订阅的事件类型。'message':接收消息事件。 |
Y
Yangys 已提交
476
| callback | Callback\<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo)}\> | 是   | 回调函数。                                |
C
clevercong 已提交
477

C
clevercong 已提交
478
**示例:**
C
clevercong 已提交
479

Z
zengyawen 已提交
480
```js
C
clevercong 已提交
481
let udp = socket.constructUDPSocketInstance();
X
xujie 已提交
482
let messageView = '';
C
clevercong 已提交
483
udp.on('message', value => {
Y
Yangys 已提交
484 485 486
  for (var i = 0; i < value.message.length; i++) {
    let messages = value.message[i]
    let message = String.fromCharCode(messages);
X
xujie 已提交
487
    messageView += message;
Y
Yangys 已提交
488 489 490
  }
  console.log('on message message: ' + JSON.stringify(messageView));
  console.log('remoteInfo: ' + JSON.stringify(value.remoteInfo));
C
clevercong 已提交
491 492
});
```
C
clevercong 已提交
493

X
xujie 已提交
494
### off('message')<sup>7+</sup>
C
clevercong 已提交
495

Y
Yangys 已提交
496
off(type: 'message', callback?: Callback\<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}\>): void
C
clevercong 已提交
497 498 499

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

Y
Yangys 已提交
500 501
> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
C
clevercong 已提交
502

C
clevercong 已提交
503
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
504

C
clevercong 已提交
505
**参数:**
C
clevercong 已提交
506

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

C
clevercong 已提交
512
**示例:**
C
clevercong 已提交
513

Z
zengyawen 已提交
514
```js
C
clevercong 已提交
515
let udp = socket.constructUDPSocketInstance();
X
xujie 已提交
516
let messageView = '';
Y
Yangys 已提交
517
let callback = value => {
Y
Yangys 已提交
518 519 520
  for (var i = 0; i < value.message.length; i++) {
    let messages = value.message[i]
    let message = String.fromCharCode(messages);
X
xujie 已提交
521
    messageView += message;
Y
Yangys 已提交
522 523 524
  }
  console.log('on message message: ' + JSON.stringify(messageView));
  console.log('remoteInfo: ' + JSON.stringify(value.remoteInfo));
C
clevercong 已提交
525 526 527 528 529 530
}
udp.on('message', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
udp.off('message', callback);
udp.off('message');
```
C
clevercong 已提交
531

X
xujie 已提交
532
### on('listening' | 'close')<sup>7+</sup>
C
clevercong 已提交
533

Y
Yangys 已提交
534
on(type: 'listening' | 'close', callback: Callback\<void\>): void
C
clevercong 已提交
535 536 537

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

C
clevercong 已提交
538
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
539

C
clevercong 已提交
540
**参数:**
C
clevercong 已提交
541

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

C
clevercong 已提交
547
**示例:**
C
clevercong 已提交
548

Z
zengyawen 已提交
549
```js
C
clevercong 已提交
550 551
let udp = socket.constructUDPSocketInstance();
udp.on('listening', () => {
Y
Yangys 已提交
552
  console.log("on listening success");
C
clevercong 已提交
553 554
});
udp.on('close', () => {
Y
Yangys 已提交
555
  console.log("on close success");
C
clevercong 已提交
556 557
});
```
C
clevercong 已提交
558

X
xujie 已提交
559
### off('listening' | 'close')<sup>7+</sup>
C
clevercong 已提交
560

Y
Yangys 已提交
561
off(type: 'listening' | 'close', callback?: Callback\<void\>): void
C
clevercong 已提交
562 563 564

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

Y
Yangys 已提交
565 566
> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
C
clevercong 已提交
567

C
clevercong 已提交
568
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
569

C
clevercong 已提交
570 571 572 573 574 575 576 577 578
**参数:**

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

**示例:**

Z
zengyawen 已提交
579
```js
C
clevercong 已提交
580
let udp = socket.constructUDPSocketInstance();
Y
Yangys 已提交
581
let callback1 = () => {
Y
Yangys 已提交
582
  console.log("on listening, success");
C
clevercong 已提交
583 584 585 586 587
}
udp.on('listening', callback1);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
udp.off('listening', callback1);
udp.off('listening');
Y
Yangys 已提交
588
let callback2 = () => {
Y
Yangys 已提交
589
  console.log("on close, success");
C
clevercong 已提交
590 591 592 593 594 595
}
udp.on('close', callback2);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
udp.off('close', callback2);
udp.off('close');
```
C
clevercong 已提交
596

X
xujie 已提交
597
### on('error')<sup>7+</sup>
C
clevercong 已提交
598

Y
Yangys 已提交
599
on(type: 'error', callback: ErrorCallback): void
C
clevercong 已提交
600 601 602

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

C
clevercong 已提交
603
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
604

C
clevercong 已提交
605
**参数:**
C
clevercong 已提交
606

C
clevercong 已提交
607 608 609 610
| 参数名   | 类型          | 必填 | 说明                                 |
| -------- | ------------- | ---- | ------------------------------------ |
| type     | string        | 是   | 订阅的事件类型。'error':error事件。 |
| callback | ErrorCallback | 是   | 回调函数。                           |
C
clevercong 已提交
611

C
clevercong 已提交
612
**示例:**
C
clevercong 已提交
613

Z
zengyawen 已提交
614
```js
Z
zengyawen 已提交
615
let udp = socket.constructUDPSocketInstance();
C
clevercong 已提交
616
udp.on('error', err => {
Y
Yangys 已提交
617
  console.log("on error, err:" + JSON.stringify(err))
C
clevercong 已提交
618 619
});
```
C
clevercong 已提交
620

X
xujie 已提交
621
### off('error')<sup>7+</sup>
C
clevercong 已提交
622

Y
Yangys 已提交
623
off(type: 'error', callback?: ErrorCallback): void
C
clevercong 已提交
624 625 626

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

Y
Yangys 已提交
627 628
> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
C
clevercong 已提交
629

C
clevercong 已提交
630
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
631

C
clevercong 已提交
632
**参数:**
C
clevercong 已提交
633

C
clevercong 已提交
634 635 636 637
| 参数名   | 类型          | 必填 | 说明                                 |
| -------- | ------------- | ---- | ------------------------------------ |
| type     | string        | 是   | 订阅的事件类型。'error':error事件。 |
| callback | ErrorCallback | 否   | 回调函数。                           |
C
clevercong 已提交
638

C
clevercong 已提交
639
**示例:**
C
clevercong 已提交
640

Z
zengyawen 已提交
641
```js
Z
zengyawen 已提交
642
let udp = socket.constructUDPSocketInstance();
Y
Yangys 已提交
643
let callback = err => {
Y
Yangys 已提交
644
  console.log("on error, err:" + JSON.stringify(err));
C
clevercong 已提交
645 646 647 648 649 650
}
udp.on('error', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
udp.off('error', callback);
udp.off('error');
```
C
clevercong 已提交
651

X
xujie 已提交
652
## NetAddress<sup>7+</sup>
C
clevercong 已提交
653 654 655

目标地址信息。

Z
zengyawen 已提交
656
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
657

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

X
xujie 已提交
664
## UDPSendOptions<sup>7+</sup>
C
clevercong 已提交
665 666 667

UDPSocket发送参数。

Z
zengyawen 已提交
668
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
669

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

X
xujie 已提交
675
## UDPExtraOptions<sup>7+</sup>
C
clevercong 已提交
676 677 678

UDPSocket连接的其他属性。

Z
zengyawen 已提交
679
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
680

L
liyufan 已提交
681
| 名称            | 类型    | 必填 | 说明                             |
C
clevercong 已提交
682 683
| ----------------- | ------- | ---- | -------------------------------- |
| broadcast         | boolean | 否   | 是否可以发送广播。默认为false。  |
X
xujie 已提交
684 685
| receiveBufferSize | number  | 否   | 接收缓冲区大小(单位:Byte),默认为0。   |
| sendBufferSize    | number  | 否   | 发送缓冲区大小(单位:Byte),默认为0。   |
C
clevercong 已提交
686
| reuseAddress      | boolean | 否   | 是否重用地址。默认为false。      |
X
xujie 已提交
687
| socketTimeout     | number  | 否   | 套接字超时时间,单位毫秒(ms),默认为0。 |
C
clevercong 已提交
688

X
xujie 已提交
689
## SocketStateBase<sup>7+</sup>
C
clevercong 已提交
690 691 692

Socket的状态信息。

Z
zengyawen 已提交
693
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
694

L
liyufan 已提交
695
| 名称      | 类型    | 必填 | 说明       |
C
clevercong 已提交
696 697 698 699 700
| ----------- | ------- | ---- | ---------- |
| isBound     | boolean | 是   | 是否绑定。 |
| isClose     | boolean | 是   | 是否关闭。 |
| isConnected | boolean | 是   | 是否连接。 |

X
xujie 已提交
701
## SocketRemoteInfo<sup>7+</sup>
C
clevercong 已提交
702 703 704

Socket的连接信息。

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

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

Y
Yangys 已提交
714
## UDP 错误码说明
Y
Yangys 已提交
715

Y
Yangys 已提交
716
UDP 其余错误码映射形式为:2301000 + Linux内核错误码。
Y
Yangys 已提交
717

Y
Yangys 已提交
718
错误码的详细介绍参见[Socket错误码](../errorcodes/errorcode-net-socket.md)
Y
Yangys 已提交
719

X
xujie 已提交
720
## socket.constructTCPSocketInstance<sup>7+</sup>
C
clevercong 已提交
721

Y
Yangys 已提交
722
constructTCPSocketInstance(): TCPSocket
C
clevercong 已提交
723 724 725

创建一个TCPSocket对象。

C
clevercong 已提交
726
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
727

C
clevercong 已提交
728
**返回值:**
C
clevercong 已提交
729

Y
Yangys 已提交
730
| 类型                               | 说明                    |
C
clevercong 已提交
731
  | :--------------------------------- | :---------------------- |
Y
Yangys 已提交
732
| [TCPSocket](#tcpsocket) | 返回一个TCPSocket对象。 |
C
clevercong 已提交
733

C
clevercong 已提交
734
**示例:**
C
clevercong 已提交
735

Z
zengyawen 已提交
736
```js
C
clevercong 已提交
737 738
let tcp = socket.constructTCPSocketInstance();
```
C
clevercong 已提交
739

X
xujie 已提交
740
## TCPSocket<sup>7+</sup>
C
clevercong 已提交
741

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

X
xujie 已提交
744
### bind<sup>7+</sup>
C
clevercong 已提交
745

Y
Yangys 已提交
746
bind(address: NetAddress, callback: AsyncCallback\<void\>): void
C
clevercong 已提交
747 748 749

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

X
fix  
xujie 已提交
750 751 752
> **说明:**
> bind方法失败会由系统随机分配端口号。

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

C
clevercong 已提交
755
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
756

C
clevercong 已提交
757
**参数:**
C
clevercong 已提交
758

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

Y
Yangys 已提交
764 765 766 767 768 769
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |
C
clevercong 已提交
770

C
clevercong 已提交
771
**示例:**
C
clevercong 已提交
772

Z
zengyawen 已提交
773
```js
C
clevercong 已提交
774
let tcp = socket.constructTCPSocketInstance();
X
xujie 已提交
775
tcp.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
Y
Yangys 已提交
776 777 778 779 780
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
C
clevercong 已提交
781 782
})
```
C
clevercong 已提交
783

X
xujie 已提交
784
### bind<sup>7+</sup>
C
clevercong 已提交
785

Y
Yangys 已提交
786
bind(address: NetAddress): Promise\<void\>
C
clevercong 已提交
787 788 789

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

X
fix  
xujie 已提交
790 791 792
> **说明:**
> bind方法失败会由系统随机分配端口号。

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

C
clevercong 已提交
795
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
796

C
clevercong 已提交
797
**参数:**
C
clevercong 已提交
798

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

C
clevercong 已提交
803
**返回值:**
C
clevercong 已提交
804

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

Y
Yangys 已提交
809 810 811 812 813 814 815
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

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

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

X
xujie 已提交
828
### connect<sup>7+</sup>
C
clevercong 已提交
829

Y
Yangys 已提交
830
connect(options: TCPConnectOptions, callback: AsyncCallback\<void\>): void
C
clevercong 已提交
831 832 833

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

Y
Yangys 已提交
834 835
> **说明:**
> bind方法调用成功后,才可调用此方法。
Y
Yangys 已提交
836

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

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

C
clevercong 已提交
841
**参数:**
C
clevercong 已提交
842

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

Y
Yangys 已提交
848 849 850 851 852 853 854
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

C
clevercong 已提交
855
**示例:**
C
clevercong 已提交
856

Z
zengyawen 已提交
857
```js
C
clevercong 已提交
858
let tcp = socket.constructTCPSocketInstance();
Y
Yangys 已提交
859
tcp.connect({ address: { address: '192.168.xx.xxx', port: xxxx, family: 1 }, timeout: 6000 }, err => {
Y
Yangys 已提交
860 861 862 863 864
  if (err) {
    console.log('connect fail');
    return;
  }
  console.log('connect success');
C
clevercong 已提交
865 866
})
```
C
clevercong 已提交
867

X
xujie 已提交
868
### connect<sup>7+</sup>
C
clevercong 已提交
869

Y
Yangys 已提交
870
connect(options: TCPConnectOptions): Promise\<void\>
C
clevercong 已提交
871 872 873

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

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

C
clevercong 已提交
876
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
877

C
clevercong 已提交
878
**参数:**
C
clevercong 已提交
879

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

C
clevercong 已提交
884
**返回值:**
C
clevercong 已提交
885

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

Y
Yangys 已提交
890 891 892 893 894 895 896
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

C
clevercong 已提交
897
**示例:**
C
clevercong 已提交
898

Z
zengyawen 已提交
899
```js
C
clevercong 已提交
900
let tcp = socket.constructTCPSocketInstance();
Y
Yangys 已提交
901
let promise = tcp.connect({ address: { address: '192.168.xx.xxx', port: xxxx, family: 1 }, timeout: 6000 });
C
clevercong 已提交
902
promise.then(() => {
Y
Yangys 已提交
903
  console.log('connect success')
C
clevercong 已提交
904
}).catch(err => {
Y
Yangys 已提交
905
  console.log('connect fail');
C
clevercong 已提交
906 907
});
```
C
clevercong 已提交
908

X
xujie 已提交
909
### send<sup>7+</sup>
C
clevercong 已提交
910

Y
Yangys 已提交
911
send(options: TCPSendOptions, callback: AsyncCallback\<void\>): void
C
clevercong 已提交
912 913 914

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

Y
Yangys 已提交
915 916
> **说明:**
> connect方法调用成功后,才可调用此方法。
C
clevercong 已提交
917 918

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

C
clevercong 已提交
920
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
921

C
clevercong 已提交
922 923 924 925
**参数:**

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

Y
Yangys 已提交
929 930 931 932 933 934 935
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

C
clevercong 已提交
936 937
**示例:**

Z
zengyawen 已提交
938
```js
C
clevercong 已提交
939
let tcp = socket.constructTCPSocketInstance();
Y
Yangys 已提交
940
tcp.connect({ address: { address: '192.168.xx.xxx', port: xxxx, family: 1 }, timeout: 6000 }, () => {
Y
Yangys 已提交
941 942 943 944 945 946 947 948 949 950 951
  console.log('connect success');
  tcp.send({
    data: 'Hello, server!'
    //此处省略encoding, 默认为utf-8编码格式
  }, err => {
    if (err) {
      console.log('send fail');
      return;
    }
    console.log('send success');
  })
Y
Yangys 已提交
952
})
C
clevercong 已提交
953
```
C
clevercong 已提交
954

X
xujie 已提交
955
### send<sup>7+</sup>
C
clevercong 已提交
956

Y
Yangys 已提交
957
send(options: TCPSendOptions): Promise\<void\>
C
clevercong 已提交
958 959 960

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

Y
Yangys 已提交
961 962
> **说明:**
> connect方法调用成功后,才可调用此方法。
C
clevercong 已提交
963 964

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

C
clevercong 已提交
966
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
967

C
clevercong 已提交
968 969 970 971
**参数:**

| 参数名  | 类型                                    | 必填 | 说明                                                         |
| ------- | --------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
972
| options | [TCPSendOptions](#tcpsendoptions) | 是   | TCPSocket发送请求的参数,参考[TCPSendOptions](#tcpsendoptions)。 |
C
clevercong 已提交
973 974 975 976 977 978 979

**返回值:**

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

Y
Yangys 已提交
980 981 982 983 984 985 986
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

C
clevercong 已提交
987 988
**示例:**

Z
zengyawen 已提交
989
```js
C
clevercong 已提交
990
let tcp = socket.constructTCPSocketInstance();
Y
Yangys 已提交
991
let promise1 = tcp.connect({ address: { address: '192.168.xx.xxx', port: xxxx, family: 1 }, timeout: 6000 });
C
clevercong 已提交
992
promise1.then(() => {
Y
Yangys 已提交
993 994 995 996 997 998 999 1000 1001
  console.log('connect success');
  let promise2 = tcp.send({
    data: 'Hello, server!'
  });
  promise2.then(() => {
    console.log('send success');
  }).catch(err => {
    console.log('send fail');
  });
C
clevercong 已提交
1002
}).catch(err => {
Y
Yangys 已提交
1003
  console.log('connect fail');
C
clevercong 已提交
1004 1005
});
```
C
clevercong 已提交
1006

X
xujie 已提交
1007
### close<sup>7+</sup>
C
clevercong 已提交
1008

Y
Yangys 已提交
1009
close(callback: AsyncCallback\<void\>): void
C
clevercong 已提交
1010 1011 1012

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

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

C
clevercong 已提交
1015
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1016

C
clevercong 已提交
1017
**参数:**
C
clevercong 已提交
1018

C
clevercong 已提交
1019 1020 1021
| 参数名   | 类型                  | 必填 | 说明       |
| -------- | --------------------- | ---- | ---------- |
| callback | AsyncCallback\<void\> | 是   | 回调函数。 |
C
clevercong 已提交
1022

Y
Yangys 已提交
1023 1024 1025 1026 1027
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 201     | Permission denied.      |
C
clevercong 已提交
1028

C
clevercong 已提交
1029
**示例:**
C
clevercong 已提交
1030

Z
zengyawen 已提交
1031
```js
C
clevercong 已提交
1032 1033
let tcp = socket.constructTCPSocketInstance();
tcp.close(err => {
Y
Yangys 已提交
1034 1035 1036 1037 1038
  if (err) {
    console.log('close fail');
    return;
  }
  console.log('close success');
C
clevercong 已提交
1039 1040
})
```
C
clevercong 已提交
1041

X
xujie 已提交
1042
### close<sup>7+</sup>
C
clevercong 已提交
1043

Y
Yangys 已提交
1044
close(): Promise\<void\>
C
clevercong 已提交
1045 1046 1047

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

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

C
clevercong 已提交
1050
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1051

C
clevercong 已提交
1052
**返回值:**
C
clevercong 已提交
1053

C
clevercong 已提交
1054 1055 1056
| 类型            | 说明                                       |
| :-------------- | :----------------------------------------- |
| Promise\<void\> | 以Promise形式返回关闭TCPSocket连接的结果。 |
C
clevercong 已提交
1057

Y
Yangys 已提交
1058 1059 1060 1061 1062 1063
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 201     | Permission denied.      |

C
clevercong 已提交
1064
**示例:**
C
clevercong 已提交
1065

Z
zengyawen 已提交
1066
```js
C
clevercong 已提交
1067 1068 1069
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.close();
promise.then(() => {
Y
Yangys 已提交
1070
  console.log('close success');
C
clevercong 已提交
1071
}).catch(err => {
Y
Yangys 已提交
1072
  console.log('close fail');
C
clevercong 已提交
1073 1074
});
```
C
clevercong 已提交
1075

X
xujie 已提交
1076
### getRemoteAddress<sup>7+</sup>
C
clevercong 已提交
1077

Y
Yangys 已提交
1078
getRemoteAddress(callback: AsyncCallback\<NetAddress\>): void
C
clevercong 已提交
1079 1080 1081

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

Y
Yangys 已提交
1082 1083
> **说明:**
> connect方法调用成功后,才可调用此方法。
C
clevercong 已提交
1084 1085

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

C
clevercong 已提交
1087
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1088

C
clevercong 已提交
1089
**参数:**
C
clevercong 已提交
1090

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

Y
Yangys 已提交
1095 1096 1097 1098 1099 1100
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 201     | Permission denied.      |

C
clevercong 已提交
1101
**示例:**
C
clevercong 已提交
1102

Z
zengyawen 已提交
1103
```js
C
clevercong 已提交
1104
let tcp = socket.constructTCPSocketInstance();
Y
Yangys 已提交
1105
tcp.connect({ address: { address: '192.168.xx.xxx', port: xxxx, family: 1 }, timeout: 6000 }, () => {
Y
Yangys 已提交
1106 1107 1108 1109 1110 1111 1112 1113
  console.log('connect success');
  tcp.getRemoteAddress((err, data) => {
    if (err) {
      console.log('getRemoteAddressfail');
      return;
    }
    console.log('getRemoteAddresssuccess:' + JSON.stringify(data));
  })
C
clevercong 已提交
1114 1115
});
```
C
clevercong 已提交
1116

X
xujie 已提交
1117
### getRemoteAddress<sup>7+</sup>
C
clevercong 已提交
1118

Y
Yangys 已提交
1119
getRemoteAddress(): Promise\<NetAddress\>
C
clevercong 已提交
1120 1121 1122

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

Y
Yangys 已提交
1123 1124
> **说明:**
> connect方法调用成功后,才可调用此方法。
C
clevercong 已提交
1125 1126

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

C
clevercong 已提交
1128
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1129

C
clevercong 已提交
1130
**返回值:**
C
clevercong 已提交
1131

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

Y
Yangys 已提交
1136 1137 1138 1139 1140 1141
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 201     | Permission denied.      |

C
clevercong 已提交
1142
**示例:**
C
clevercong 已提交
1143

Z
zengyawen 已提交
1144
```js
C
clevercong 已提交
1145
let tcp = socket.constructTCPSocketInstance();
Y
Yangys 已提交
1146
let promise1 = tcp.connect({ address: { address: '192.168.xx.xxx', port: xxxx, family: 1 }, timeout: 6000 });
C
clevercong 已提交
1147
promise1.then(() => {
Y
Yangys 已提交
1148 1149 1150 1151 1152 1153 1154
  console.log('connect success');
  let promise2 = tcp.getRemoteAddress();
  promise2.then(() => {
    console.log('getRemoteAddress success');
  }).catch(err => {
    console.log('getRemoteAddressfail');
  });
C
clevercong 已提交
1155
}).catch(err => {
Y
Yangys 已提交
1156
  console.log('connect fail');
C
clevercong 已提交
1157 1158
});
```
C
clevercong 已提交
1159

X
xujie 已提交
1160
### getState<sup>7+</sup>
C
clevercong 已提交
1161

Y
Yangys 已提交
1162
getState(callback: AsyncCallback\<SocketStateBase\>): void
C
clevercong 已提交
1163 1164 1165

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

Y
Yangys 已提交
1166 1167
> **说明:**
> bind或connect方法调用成功后,才可调用此方法。
C
clevercong 已提交
1168 1169

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

C
clevercong 已提交
1171
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1172

C
clevercong 已提交
1173
**参数:**
C
clevercong 已提交
1174

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

Y
Yangys 已提交
1179 1180 1181 1182 1183
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 201     | Permission denied.      |
C
clevercong 已提交
1184

C
clevercong 已提交
1185
**示例:**
C
clevercong 已提交
1186

Z
zengyawen 已提交
1187
```js
C
clevercong 已提交
1188
let tcp = socket.constructTCPSocketInstance();
Y
Yangys 已提交
1189
let promise = tcp.connect({ address: { address: '192.168.xx.xxx', port: xxxx, family: 1 }, timeout: 6000 }, () => {
Y
Yangys 已提交
1190 1191 1192 1193 1194 1195 1196 1197
  console.log('connect success');
  tcp.getState((err, data) => {
    if (err) {
      console.log('getState fail');
      return;
    }
    console.log('getState success:' + JSON.stringify(data));
  });
C
clevercong 已提交
1198 1199
});
```
C
clevercong 已提交
1200

X
xujie 已提交
1201
### getState<sup>7+</sup>
C
clevercong 已提交
1202

Y
Yangys 已提交
1203
getState(): Promise\<SocketStateBase\>
C
clevercong 已提交
1204 1205 1206

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

Y
Yangys 已提交
1207 1208
> **说明:**
> bind或connect方法调用成功后,才可调用此方法。
C
clevercong 已提交
1209 1210

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

C
clevercong 已提交
1212
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1213

C
clevercong 已提交
1214
**返回值:**
C
clevercong 已提交
1215

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

Y
Yangys 已提交
1220 1221 1222 1223 1224
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 201     | Permission denied.      |
C
clevercong 已提交
1225

C
clevercong 已提交
1226
**示例:**
C
clevercong 已提交
1227

Z
zengyawen 已提交
1228
```js
C
clevercong 已提交
1229
let tcp = socket.constructTCPSocketInstance();
Y
Yangys 已提交
1230
let promise = tcp.connect({ address: { address: '192.168.xx.xxx', port: xxxx, family: 1 }, timeout: 6000 });
C
clevercong 已提交
1231
promise.then(() => {
Y
Yangys 已提交
1232 1233 1234 1235 1236 1237 1238
  console.log('connect success');
  let promise1 = tcp.getState();
  promise1.then(() => {
    console.log('getState success');
  }).catch(err => {
    console.log('getState fail');
  });
C
clevercong 已提交
1239
}).catch(err => {
Y
Yangys 已提交
1240
  console.log('connect fail');
C
clevercong 已提交
1241 1242
});
```
C
clevercong 已提交
1243

X
xujie 已提交
1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
### getSocketFd<sup>10+</sup>

getSocketFd(callback: AsyncCallback\<number\>): void

获取TCPSocket的文件描述符。使用callback方式作为异步方法。

> **说明:**
> bind或connect方法调用成功后,才可调用此方法。

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

**参数:**

| 参数名   | 类型                                                   | 必填 | 说明       |
| -------- | ------------------------------------------------------ | ---- | ---------- |
X
xujie 已提交
1259
| callback | AsyncCallback\<number\> | 是   | 回调函数,当成功时,返回socket的文件描述符,失败时,返回undefined。 |
X
xujie 已提交
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298

**示例:**

```js
  import socket from "@ohos.net.socket";
  var tcp = socket.constructTCPSocketInstance();
  let tunnelfd = 0
  tcp.bind({
      address: "0.0.0.0",
      family: 1,
  })
  let connectAddress = {
      address: "192.168.1.11",
      port: 8888,
      family: 1
  };
  tcp.connect({
      address: connectAddress, timeout: 6000
  })
  tcp.getSocketFd((data) => {
      console.info("tunenlfd: " + data);
      tunnelfd = data
  })
```
### getSocketFd<sup>10+</sup>

getSocketFd(): Promise\<number\>

获取TCPSocket的文件描述符。使用Promise方式作为异步方法。

> **说明:**
> bind或connect方法调用成功后,才可调用此方法。

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

**返回值:**

| 类型                                             | 说明                                       |
| :----------------------------------------------- | :----------------------------------------- |
X
xujie 已提交
1299
| Promise\<number\> | 以Promise形式返回socket的文件描述符。 |
X
xujie 已提交
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324

**示例:**

```js
  import socket from "@ohos.net.socket";
  var tcp = socket.constructTCPSocketInstance();
  let tunnelfd = 0
  tcp.bind({
      address: "0.0.0.0",
      family: 1,
  })
  let connectAddress = {
      address: "192.168.1.11",
      port: 8888,
      family: 1
  };
  tcp.connect({
      address: connectAddress, timeout: 6000
  })
  tcp.getSocketFd().then((data) => {
      console.info("tunenlfd: " + data);
      tunnelfd = data
  })
```

X
xujie 已提交
1325
### setExtraOptions<sup>7+</sup>
C
clevercong 已提交
1326

Y
Yangys 已提交
1327
setExtraOptions(options: TCPExtraOptions, callback: AsyncCallback\<void\>): void
C
clevercong 已提交
1328 1329 1330

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

Y
Yangys 已提交
1331 1332
> **说明:**
> bind或connect方法调用成功后,才可调用此方法。
C
clevercong 已提交
1333 1334

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

C
clevercong 已提交
1336
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1337

C
clevercong 已提交
1338 1339 1340 1341
**参数:**

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

Y
Yangys 已提交
1345 1346 1347 1348 1349 1350 1351
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

C
clevercong 已提交
1352 1353
**示例:**

Z
zengyawen 已提交
1354
```js
C
clevercong 已提交
1355
let tcp = socket.constructTCPSocketInstance();
Y
Yangys 已提交
1356
let promise = tcp.connect({ address: { address: '192.168.xx.xxx', port: xxxx, family: 1 }, timeout: 6000 }, () => {
Y
Yangys 已提交
1357 1358 1359 1360 1361
  console.log('connect success');
  tcp.setExtraOptions({
    keepAlive: true,
    OOBInline: true,
    TCPNoDelay: true,
Y
Yangys 已提交
1362
    socketLinger: { on: true, linger: 10 },
Y
Yangys 已提交
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373
    receiveBufferSize: 1000,
    sendBufferSize: 1000,
    reuseAddress: true,
    socketTimeout: 3000,
  }, err => {
    if (err) {
      console.log('setExtraOptions fail');
      return;
    }
    console.log('setExtraOptions success');
  });
C
clevercong 已提交
1374 1375
});
```
C
clevercong 已提交
1376

X
xujie 已提交
1377
### setExtraOptions<sup>7+</sup>
C
clevercong 已提交
1378

Y
Yangys 已提交
1379
setExtraOptions(options: TCPExtraOptions): Promise\<void\>
C
clevercong 已提交
1380 1381 1382

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

Y
Yangys 已提交
1383 1384
> **说明:**
> bind或connect方法调用成功后,才可调用此方法。
C
clevercong 已提交
1385 1386

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

C
clevercong 已提交
1388
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1389

C
clevercong 已提交
1390 1391 1392 1393
**参数:**

| 参数名  | 类型                                      | 必填 | 说明                                                         |
| ------- | ----------------------------------------- | ---- | ------------------------------------------------------------ |
C
clevercong 已提交
1394
| options | [TCPExtraOptions](#tcpextraoptions) | 是   | TCPSocket连接的其他属性,参考[TCPExtraOptions](#tcpextraoptions)。 |
C
clevercong 已提交
1395 1396 1397 1398 1399 1400 1401

**返回值:**

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

Y
Yangys 已提交
1402 1403 1404 1405 1406 1407
**错误码:**

| 错误码ID | 错误信息                 |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |
C
clevercong 已提交
1408 1409 1410

**示例:**

Z
zengyawen 已提交
1411
```js
C
clevercong 已提交
1412
let tcp = socket.constructTCPSocketInstance();
Y
Yangys 已提交
1413
let promise = tcp.connect({ address: { address: '192.168.xx.xxx', port: xxxx, family: 1 }, timeout: 6000 });
C
clevercong 已提交
1414
promise.then(() => {
Y
Yangys 已提交
1415 1416 1417 1418 1419
  console.log('connect success');
  let promise1 = tcp.setExtraOptions({
    keepAlive: true,
    OOBInline: true,
    TCPNoDelay: true,
Y
Yangys 已提交
1420
    socketLinger: { on: true, linger: 10 },
Y
Yangys 已提交
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
    receiveBufferSize: 1000,
    sendBufferSize: 1000,
    reuseAddress: true,
    socketTimeout: 3000,
  });
  promise1.then(() => {
    console.log('setExtraOptions success');
  }).catch(err => {
    console.log('setExtraOptions fail');
  });
C
clevercong 已提交
1431
}).catch(err => {
Y
Yangys 已提交
1432
  console.log('connect fail');
C
clevercong 已提交
1433 1434
});
```
C
clevercong 已提交
1435

X
xujie 已提交
1436
### on('message')<sup>7+</sup>
C
clevercong 已提交
1437

Y
Yangys 已提交
1438
on(type: 'message', callback: Callback<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}\>): void
C
clevercong 已提交
1439 1440 1441

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

C
clevercong 已提交
1442
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1443

C
clevercong 已提交
1444
**参数:**
C
clevercong 已提交
1445

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

C
clevercong 已提交
1451
**示例:**
C
clevercong 已提交
1452

Z
zengyawen 已提交
1453
```js
C
clevercong 已提交
1454
let tcp = socket.constructTCPSocketInstance();
X
xujie 已提交
1455
let messageView = '';
C
clevercong 已提交
1456
tcp.on('message', value => {
Y
Yangys 已提交
1457 1458 1459
  for (var i = 0; i < value.message.length; i++) {
    let messages = value.message[i]
    let message = String.fromCharCode(messages);
X
xujie 已提交
1460
    messageView += message;
Y
Yangys 已提交
1461 1462 1463
  }
  console.log('on message message: ' + JSON.stringify(messageView));
  console.log('remoteInfo: ' + JSON.stringify(value.remoteInfo));
C
clevercong 已提交
1464 1465
});
```
C
clevercong 已提交
1466

X
xujie 已提交
1467
### off('message')<sup>7+</sup>
C
clevercong 已提交
1468

Y
Yangys 已提交
1469
off(type: 'message', callback?: Callback<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}\>): void
C
clevercong 已提交
1470 1471 1472

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

Y
Yangys 已提交
1473 1474
> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
C
clevercong 已提交
1475

C
clevercong 已提交
1476
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1477

C
clevercong 已提交
1478
**参数:**
C
clevercong 已提交
1479

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

C
clevercong 已提交
1485
**示例:**
C
clevercong 已提交
1486

Z
zengyawen 已提交
1487
```js
C
clevercong 已提交
1488
let tcp = socket.constructTCPSocketInstance();
X
xujie 已提交
1489
let messageView = '';
Y
Yangys 已提交
1490
let callback = value => {
Y
Yangys 已提交
1491 1492 1493
  for (var i = 0; i < value.message.length; i++) {
    let messages = value.message[i]
    let message = String.fromCharCode(messages);
X
xujie 已提交
1494
    messageView += message;
Y
Yangys 已提交
1495 1496 1497
  }
  console.log('on message message: ' + JSON.stringify(messageView));
  console.log('remoteInfo: ' + JSON.stringify(value.remoteInfo));
C
clevercong 已提交
1498 1499 1500 1501 1502 1503
}
tcp.on('message', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tcp.off('message', callback);
tcp.off('message');
```
C
clevercong 已提交
1504

X
xujie 已提交
1505
### on('connect' | 'close')<sup>7+</sup>
C
clevercong 已提交
1506

Y
Yangys 已提交
1507
on(type: 'connect' | 'close', callback: Callback\<void\>): void
C
clevercong 已提交
1508 1509 1510

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

C
clevercong 已提交
1511
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1512

C
clevercong 已提交
1513
**参数:**
C
clevercong 已提交
1514

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

C
clevercong 已提交
1520
**示例:**
C
clevercong 已提交
1521

Z
zengyawen 已提交
1522
```js
C
clevercong 已提交
1523 1524
let tcp = socket.constructTCPSocketInstance();
tcp.on('connect', () => {
Y
Yangys 已提交
1525
  console.log("on connect success")
C
clevercong 已提交
1526
});
Y
Yangys 已提交
1527
tcp.on('close', () => {
Y
Yangys 已提交
1528
  console.log("on close success")
C
clevercong 已提交
1529 1530
});
```
C
clevercong 已提交
1531

X
xujie 已提交
1532
### off('connect' | 'close')<sup>7+</sup>
C
clevercong 已提交
1533

Y
Yangys 已提交
1534
off(type: 'connect' | 'close', callback?: Callback\<void\>): void
C
clevercong 已提交
1535 1536 1537

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

Y
Yangys 已提交
1538 1539
> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
C
clevercong 已提交
1540

C
clevercong 已提交
1541
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1542

C
clevercong 已提交
1543 1544 1545 1546 1547 1548 1549 1550 1551
**参数:**

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

**示例:**

Z
zengyawen 已提交
1552
```js
C
clevercong 已提交
1553
let tcp = socket.constructTCPSocketInstance();
Y
Yangys 已提交
1554
let callback1 = () => {
Y
Yangys 已提交
1555
  console.log("on connect success");
C
clevercong 已提交
1556 1557 1558 1559 1560
}
tcp.on('connect', callback1);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tcp.off('connect', callback1);
tcp.off('connect');
Y
Yangys 已提交
1561
let callback2 = () => {
Y
Yangys 已提交
1562
  console.log("on close success");
C
clevercong 已提交
1563 1564 1565 1566 1567 1568
}
tcp.on('close', callback2);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tcp.off('close', callback2);
tcp.off('close');
```
C
clevercong 已提交
1569

X
xujie 已提交
1570
### on('error')<sup>7+</sup>
C
clevercong 已提交
1571

Y
Yangys 已提交
1572
on(type: 'error', callback: ErrorCallback): void
C
clevercong 已提交
1573 1574 1575

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

C
clevercong 已提交
1576
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1577

C
clevercong 已提交
1578
**参数:**
C
clevercong 已提交
1579

C
clevercong 已提交
1580 1581 1582 1583
| 参数名   | 类型          | 必填 | 说明                                 |
| -------- | ------------- | ---- | ------------------------------------ |
| type     | string        | 是   | 订阅的事件类型。'error':error事件。 |
| callback | ErrorCallback | 是   | 回调函数。                           |
C
clevercong 已提交
1584

C
clevercong 已提交
1585
**示例:**
C
clevercong 已提交
1586

Z
zengyawen 已提交
1587
```js
C
clevercong 已提交
1588 1589
let tcp = socket.constructTCPSocketInstance();
tcp.on('error', err => {
Y
Yangys 已提交
1590
  console.log("on error, err:" + JSON.stringify(err))
C
clevercong 已提交
1591 1592
});
```
C
clevercong 已提交
1593

X
xujie 已提交
1594
### off('error')<sup>7+</sup>
C
clevercong 已提交
1595

Y
Yangys 已提交
1596
off(type: 'error', callback?: ErrorCallback): void
C
clevercong 已提交
1597 1598 1599

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

Y
Yangys 已提交
1600 1601
> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
C
clevercong 已提交
1602

C
clevercong 已提交
1603
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1604

C
clevercong 已提交
1605 1606 1607 1608 1609 1610 1611 1612 1613
**参数:**

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

**示例:**

Z
zengyawen 已提交
1614
```js
C
clevercong 已提交
1615
let tcp = socket.constructTCPSocketInstance();
Y
Yangys 已提交
1616
let callback = err => {
Y
Yangys 已提交
1617
  console.log("on error, err:" + JSON.stringify(err));
C
clevercong 已提交
1618 1619 1620 1621 1622 1623
}
tcp.on('error', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tcp.off('error', callback);
tcp.off('error');
```
C
clevercong 已提交
1624

X
xujie 已提交
1625
## TCPConnectOptions<sup>7+</sup>
C
clevercong 已提交
1626 1627 1628

TCPSocket连接的参数。

Z
zengyawen 已提交
1629
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1630

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

X
xujie 已提交
1636
## TCPSendOptions<sup>7+</sup>
C
clevercong 已提交
1637 1638 1639

TCPSocket发送请求的参数。

Z
zengyawen 已提交
1640
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1641

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

X
xujie 已提交
1647
## TCPExtraOptions<sup>7+</sup>
C
clevercong 已提交
1648 1649 1650

TCPSocket连接的其他属性。

Z
zengyawen 已提交
1651
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
1652

L
liyufan 已提交
1653
| 名称            | 类型    | 必填 | 说明                                                         |
C
clevercong 已提交
1654 1655 1656 1657 1658
| ----------------- | ------- | ---- | ------------------------------------------------------------ |
| 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时,才需要设置。 |
X
xujie 已提交
1659 1660
| receiveBufferSize | number  | 否   | 接收缓冲区大小(单位:Byte),默认为0。                               |
| sendBufferSize    | number  | 否   | 发送缓冲区大小(单位:Byte),默认为0。                               |
C
clevercong 已提交
1661
| reuseAddress      | boolean | 否   | 是否重用地址。默认为false。                                  |
X
xujie 已提交
1662
| socketTimeout     | number  | 否   | 套接字超时时间,单位毫秒(ms),默认为0。                             |
L
liyufan 已提交
1663

X
xujie 已提交
1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675
## socket.constructTCPSocketServerInstance<sup>10+</sup>

constructTCPSocketServerInstance(): TCPSocketServer

创建一个TCPSocketServer对象。

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

**返回值:**

| 类型                                | 说明                          |
| :---------------------------------- | :---------------------------- |
X
xujie 已提交
1676
| [TCPSocketServer](#tcpsocketserver10) | 返回一个TCPSocketServer对象。 |
X
xujie 已提交
1677 1678 1679 1680 1681 1682 1683 1684 1685

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
```

## TCPSocketServer<sup>10+</sup>

X
xujie 已提交
1686
TCPSocketServer连接。在调用TCPSocketServer的方法前,需要先通过[socket.constructTCPSocketServerInstance](#socketconstructtcpsocketserverinstance10)创建TCPSocketServer对象。
X
xujie 已提交
1687 1688 1689 1690 1691 1692 1693 1694

### listen<sup>10+</sup>

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

绑定IP地址和端口,端口可以指定或由系统随机分配。监听并接受与此套接字建立的TCPSocket连接。该接口使用多线程并发处理客户端的数据。使用callback方法作为异步方法。

> **说明:**
X
fix  
xujie 已提交
1695
> 服务端使用该方法完成bind,listen,accept操作,bind方法失败会由系统随机分配端口号。
X
xujie 已提交
1696 1697 1698 1699 1700 1701 1702 1703 1704

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

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明                                          |
| -------- | ------------------------- | ---- | --------------------------------------------- |
X
xujie 已提交
1705
| address  | [NetAddress](#netaddress7) | 是   | 目标地址信息。 |
X
xujie 已提交
1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739
| callback | AsyncCallback\<void\>     | 是   | 回调函数。                                    |

**错误码:**

| 错误码ID | 错误信息                                    |
| -------- | ------------------------------------------- |
| 401      | Parameter error.                            |
| 201      | Permission denied.                          |
| 2300002  | System internal error.                      |
| 2303109  | Bad file number.                            |
| 2303111  | Resource temporarily unavailable try again. |
| 2303198  | Address already in use.                     |
| 2303199  | Cannot assign requested address.            |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.listen({ address: "192.168.xx.xxx", port: xxxx, family: 1 }, err => {
  if (err) {
    console.log("listen fail");
    return;
  }
  console.log("listen success");
})
```

### listen<sup>10+</sup>

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

绑定IP地址和端口,端口可以指定或由系统随机分配。监听并接受与此套接字建立的TCPSocket连接。该接口使用多线程并发处理客户端的数据。使用Promise方法作为异步方法。

> **说明:**
X
fix  
xujie 已提交
1740
> 服务端使用该方法完成bind,listen,accept操作,bind方法失败会由系统随机分配端口号。
X
xujie 已提交
1741 1742 1743 1744 1745 1746 1747 1748 1749

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

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

**参数:**

| 参数名  | 类型                      | 必填 | 说明                                          |
| ------- | ------------------------- | ---- | --------------------------------------------- |
X
xujie 已提交
1750
| address | [NetAddress](#netaddress7) | 是   | 目标地址信息。 |
X
xujie 已提交
1751 1752 1753 1754 1755

**返回值:**

| 类型            | 说明                                                         |
| :-------------- | :----------------------------------------------------------- |
X
xujie 已提交
1756
| Promise\<void\> | 以Promise形式返回, 成功返回空,失败返回错误码错误信息。|
X
xujie 已提交
1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 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

**错误码:**

| 错误码ID | 错误信息                                    |
| -------- | ------------------------------------------- |
| 401      | Parameter error.                            |
| 201      | Permission denied.                          |
| 2300002  | System internal error.                      |
| 2303109  | Bad file number.                            |
| 2303111  | Resource temporarily unavailable try again. |
| 2303198  | Address already in use.                     |
| 2303199  | Cannot assign requested address.            |

**示例:**

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

### getState<sup>10+</sup>

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

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

> **说明:**
> listen方法调用成功后,才可调用此方法。

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

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

**参数:**

| 参数名   | 类型                                               | 必填 | 说明       |
| -------- | -------------------------------------------------- | ---- | ---------- |
X
xujie 已提交
1799
| callback | AsyncCallback<[SocketStateBase](#socketstatebase7)> | 是   | 回调函数。 |
X
xujie 已提交
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

**错误码:**

| 错误码ID | 错误信息                        |
| -------- | ------------------------------- |
| 401      | Parameter error.                |
| 201      | Permission denied.              |
| 2300002  | System internal error.          |
| 2303188  | Socket operation on non-socket. |

**示例:**

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

### getState<sup>10+</sup>

getState(): Promise\<SocketStateBase\>

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

> **说明:**
> listen方法调用成功后,才可调用此方法。

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

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

**返回值:**

| 类型                                         | 说明                                       |
| :------------------------------------------- | :----------------------------------------- |
X
xujie 已提交
1847
| Promise<[SocketStateBase](#socketstatebase7)> | 以Promise形式返回获取TCPSocket状态的结果。 |
X
xujie 已提交
1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891

**错误码:**

| 错误码ID | 错误信息                        |
| -------- | ------------------------------- |
| 201      | Permission denied.              |
| 2300002  | System internal error.          |
| 2303188  | Socket operation on non-socket. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
let promiseListen = tcpServer.listen({ address: '192.168.xx.xxx', port: xxxx, family: 1 });
promiseListen.then(() => {
  console.log('listen success');
}).catch(err => {
  console.log('listen fail');
});
let promise = tcpServer.getState();
promise.then(() => {
  console.log('getState success');
}).catch(err => {
  console.log('getState fail');
});
```

### setExtraOptions<sup>10+</sup>

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

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

> **说明:**
> listen方法调用成功后,才可调用此方法。

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

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

**参数:**

| 参数名   | 类型                                | 必填 | 说明                                                         |
| -------- | ----------------------------------- | ---- | ------------------------------------------------------------ |
X
xujie 已提交
1892
| options  | [TCPExtraOptions](#tcpextraoptions7) | 是   | TCPSocketServer连接的其他属性。 |
X
xujie 已提交
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
| callback | AsyncCallback\<void\>               | 是   | 回调函数。                                                   |

**错误码:**

| 错误码ID | 错误信息                        |
| -------- | ------------------------------- |
| 401      | Parameter error.                |
| 201      | Permission denied.              |
| 2300002  | System internal error.          |
| 2303188  | Socket operation on non-socket. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.listen({ address: "192.168.xx.xxx", port: xxxx, family: 1 }, err => {
  if (err) {
    console.log("listen fail");
    return;
  }
  console.log("listen success");
})
tcpServer.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>10+</sup>

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

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

> **说明:**
> listen方法调用成功后,才可调用此方法。

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

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

**参数:**

| 参数名  | 类型                                | 必填 | 说明                                                         |
| ------- | ----------------------------------- | ---- | ------------------------------------------------------------ |
X
xujie 已提交
1950
| options | [TCPExtraOptions](#tcpextraoptions7) | 是   | TCPSocketServer连接的其他属性。 |
X
xujie 已提交
1951 1952 1953 1954 1955

**返回值:**

| 类型            | 说明                                                       |
| :-------------- | :--------------------------------------------------------- |
X
xujie 已提交
1956
| Promise\<void\> | 以Promise形式返回,成功返回空,失败返回错误码错误信息。 |
X
xujie 已提交
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 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

**错误码:**

| 错误码ID | 错误信息                        |
| -------- | ------------------------------- |
| 401      | Parameter error.                |
| 201      | Permission denied.              |
| 2300002  | System internal error.          |
| 2303188  | Socket operation on non-socket. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
let promiseListen = tcpServer.listen({ address: '192.168.xx.xxx', port: xxxx, family: 1 });
promiseListen.then(() => {
  console.log('listen success');
}).catch(err => {
  console.log('listen fail');
});
let promise = tcpServer.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');
});
```

### on('connect')<sup>10+</sup>

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

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

X
fix  
xujie 已提交
2000 2001 2002
> **说明:**
> listen方法调用成功后,才可调用此方法。

X
xujie 已提交
2003 2004 2005 2006 2007 2008 2009
**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                            | 必填 | 说明                                  |
| -------- | ------------------------------- | ---- | ------------------------------------- |
| type     | string                          | 是   | 订阅的事件类型。'connect':连接事件。 |
X
xujie 已提交
2010
| callback | Callback<[TCPSocketConnection](#tcpsocketconnection10)> | 是   | 回调函数。                            |
X
xujie 已提交
2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('connect', function(data) {
  console.log(JSON.stringify(data))
});
```

### off('connect')<sup>10+</sup>

off(type: 'connect', callback?: Callback\<TCPSocketConnection\>): void

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

> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

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

**参数:**

| 参数名   | 类型                            | 必填 | 说明                                  |
| -------- | ------------------------------- | ---- | ------------------------------------- |
| type     | string                          | 是   | 订阅的事件类型。'connect':连接事件。 |
X
xujie 已提交
2043
| callback | Callback<[TCPSocketConnection](#tcpsocketconnection10)> | 否   | 回调函数。                            |
X
xujie 已提交
2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
let callback = data => {
  console.log('on connect message: ' + JSON.stringify(data));
}
tcpServer.on('connect', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tcpServer.off('connect', callback);
tcpServer.off('connect');
```

### on('error')<sup>10+</sup>

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

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

X
fix  
xujie 已提交
2070 2071 2072
> **说明:**
> listen方法调用成功后,才可调用此方法。

X
xujie 已提交
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 2100 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 2133 2134 2135 2136 2137
**系统能力**:SystemCapability.Communication.NetStack

**参数:**

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

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('error', err => {
  console.log("on error, err:" + JSON.stringify(err))
});
```

### off('error')<sup>10+</sup>

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

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

> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
let callback = err => {
  console.log("on error, err:" + JSON.stringify(err));
}
tcpServer.on('error', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tcpServer.off('error', callback);
tcpServer.off('error');
```

## TCPSocketConnection<sup>10+</sup>

TCPSocketConnection连接,即TCPSocket客户端与服务端的连接。在调用TCPSocketConnection的方法前,需要先获取TCPSocketConnection对象。

X
xujie 已提交
2138 2139 2140
> **说明:**
> 客户端与服务端成功建立连接后,才能通过返回的TCPSocketConnection对象调用相应的接口。

X
xujie 已提交
2141 2142 2143 2144 2145 2146
**系统能力**:SystemCapability.Communication.NetStack

### 属性

| 名称     | 类型   | 必填 | 说明                                      |
| -------- | ------ | ---- | ----------------------------------------- |
X
xujie 已提交
2147
| clientId | number | 是   | 客户端与TCPSocketServer建立连接的id。 |
X
xujie 已提交
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165

### send<sup>10+</sup>

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

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

> **说明:**
> 与客户端建立连接后,才可调用此方法。

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

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

**参数:**

| 参数名   | 类型                              | 必填 | 说明                                                         |
| -------- | --------------------------------- | ---- | ------------------------------------------------------------ |
X
xujie 已提交
2166
| options  | [TCPSendOptions](#tcpsendoptions7) | 是   | TCPSocketConnection发送请求的参数。 |
X
xujie 已提交
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 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208
| callback | AsyncCallback\<void\>             | 是   | 回调函数。                                                   |

**错误码:**

| 错误码ID | 错误信息               |
| -------- | ---------------------- |
| 401      | Parameter error.       |
| 201      | Permission denied.     |
| 2300002  | System internal error. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('connect', function(client) {
  client.send({data: 'Hello, client!'}, err => {
    if (err) {
        console.log('send fail');
        return;
    }
    console.log('send success');
  });
});
```

### send<sup>10+</sup>

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

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

> **说明:**
> 与客户端建立连接后,才可调用此方法。

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

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

**参数:**

| 参数名  | 类型                              | 必填 | 说明                                                         |
| ------- | --------------------------------- | ---- | ------------------------------------------------------------ |
X
xujie 已提交
2209
| options | [TCPSendOptions](#tcpsendoptions7) | 是   | TCPSocketConnection发送请求的参数。 |
X
xujie 已提交
2210 2211 2212 2213 2214

**返回值:**

| 类型            | 说明                                                         |
| :-------------- | :----------------------------------------------------------- |
X
xujie 已提交
2215
| Promise\<void\> | 以Promise形式返回,成功返回空,失败返回错误码错误信息。 |
X
xujie 已提交
2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 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 2265 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

**错误码:**

| 错误码ID | 错误信息               |
| -------- | ---------------------- |
| 401      | Parameter error.       |
| 201      | Permission denied.     |
| 2300002  | System internal error. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('connect', function(client) {
  let promise = client.send({data: 'Hello, client!'});
  promise.then(() => {
    console.log('send success');
  }).catch(err => {
    console.log('send fail');
  });
});
```

### close<sup>10+</sup>

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

关闭一个与TCPSocket建立的连接。使用callback方式作为异步方法。

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

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

**参数:**

| 参数名   | 类型                  | 必填 | 说明       |
| -------- | --------------------- | ---- | ---------- |
| callback | AsyncCallback\<void\> | 是   | 回调函数。 |

**错误码:**

| 错误码ID | 错误信息               |
| -------- | ---------------------- |
| 401      | Parameter error.       |
| 201      | Permission denied.     |
| 2300002  | System internal error. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('connect', function(client) {
  client.close(err => {
    if (err) {
      console.log('close fail');
      return;
    }
    console.log('close success');
  });
});
```

### close<sup>10+</sup>

close(): Promise\<void\>

关闭一个与TCPSocket建立的连接。使用Promise方式作为异步方法。

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

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

**返回值:**

| 类型            | 说明                                         |
| :-------------- | :------------------------------------------- |
X
xujie 已提交
2292
| Promise\<void\> | 以Promise形式返回,成功返回空,失败返回错误码错误信息。 |
X
xujie 已提交
2293 2294 2295 2296 2297 2298 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 2331

**错误码:**

| 错误码ID | 错误信息               |
| -------- | ---------------------- |
| 201      | Permission denied.     |
| 2300002  | System internal error. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('connect', function(client) {
  let promise = client.close();
  promise.then(() => {
  	console.log('close success');
  }).catch(err => {
  	console.log('close fail');
  });
});
```

### getRemoteAddress<sup>10+</sup>

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

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

> **说明:**
> 与客户端建立连接后,才可调用此方法。

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

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

**参数:**

| 参数名   | 类型                                     | 必填 | 说明       |
| -------- | ---------------------------------------- | ---- | ---------- |
X
xujie 已提交
2332
| callback | AsyncCallback<[NetAddress](#netaddress7)> | 是   | 回调函数。 |
X
xujie 已提交
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 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374

**错误码:**

| 错误码ID | 错误信息                        |
| -------- | ------------------------------- |
| 401      | Parameter error.                |
| 201      | Permission denied.              |
| 2300002  | System internal error.          |
| 2303188  | Socket operation on non-socket. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('connect', function(client) {
  client.getRemoteAddress((err, data) => {
    if (err) {
      console.log('getRemoteAddress fail');
      return;
    }
    console.log('getRemoteAddress success:' + JSON.stringify(data));
  });
});
```

### getRemoteAddress<sup>10+</sup>

getRemoteAddress(): Promise\<NetAddress\>

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

> **说明:**
> 与客户端建立连接后,才可调用此方法。

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

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

**返回值:**

| 类型                               | 说明                                        |
| :--------------------------------- | :------------------------------------------ |
X
xujie 已提交
2375
| Promise<[NetAddress](#netaddress7)> | 以Promise形式返回获取对端socket地址的结果。 |
X
xujie 已提交
2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411

**错误码:**

| 错误码ID | 错误信息                        |
| -------- | ------------------------------- |
| 201      | Permission denied.              |
| 2300002  | System internal error.          |
| 2303188  | Socket operation on non-socket. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('connect', function(client) {
  let promise = client.getRemoteAddress();
  promise.then(() => {
    console.log('getRemoteAddress success');
  }).catch(err => {
    console.log('getRemoteAddress fail');
  });
});
```

### on('message')<sup>10+</sup>

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

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

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                      |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
| type     | string                                                       | 是   | 订阅的事件类型。'message':接收消息事件。 |
X
xujie 已提交
2412
| callback | Callback<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo7)}> | 是   | 回调函数。message:接收到的消息;remoteInfo:socket连接信息。                                |
X
xujie 已提交
2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('connect', function(client) {
  client.on('message', value => {
    let messageView = '';
    for (var i = 0; i < value.message.length; i++) {
      let messages = value.message[i];
      let message = String.fromCharCode(messages);
X
xujie 已提交
2430
      messageView += message;
X
xujie 已提交
2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453
    }
    console.log('on message message: ' + JSON.stringify(messageView));
    console.log('remoteInfo: ' + JSON.stringify(value.remoteInfo));
  });
});
```

### off('message')<sup>10+</sup>

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

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

> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                      |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
| type     | string                                                       | 是   | 订阅的事件类型。'message':接收消息事件。 |
X
xujie 已提交
2454
| callback | Callback<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo7)}> | 否   | 回调函数。message:接收到的消息;remoteInfo:socket连接信息。                                |
X
xujie 已提交
2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let callback = value => {
  let messageView = '';
  for (var i = 0; i < value.message.length; i++) {
    let messages = value.message[i];
    let message = String.fromCharCode(messages);
X
xujie 已提交
2470
    messageView += message;
X
xujie 已提交
2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496
  }
  console.log('on message message: ' + JSON.stringify(messageView));
  console.log('remoteInfo: ' + JSON.stringify(value.remoteInfo));
}
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('connect', function(client) {
  client.on('message', callback);
  // 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
  client.off('message', callback);
  client.off('message');
});
```

### on('close')<sup>10+</sup>

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

订阅TCPSocketConnection的关闭事件。使用callback方式作为异步方法。

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

**参数:**

| 参数名   | 类型             | 必填 | 说明                                |
| -------- | ---------------- | ---- | ----------------------------------- |
| type     | string           | 是   | 订阅的事件类型。'close':关闭事件。 |
X
xujie 已提交
2497
| callback | Callback\<void\> | 是   | 回调函数。                          |
X
xujie 已提交
2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('connect', function(client) {
  client.on('close', () => {
    console.log("on close success")
  });
});
```

### off('close')<sup>10+</sup>

2518
off(type: 'close', callback?: Callback<void>): void
X
xujie 已提交
2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625

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

> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let callback = () => {
  console.log("on close success");
}
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('connect', function(client) {
  client.on('close', callback);
  // 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
  client.off('close', callback);
  client.off('close');
});
```

### on('error')<sup>10+</sup>

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('connect', function(client) {
  client.on('error', err => {
    console.log("on error, err:" + JSON.stringify(err))
  });
});
```

### off('error')<sup>10+</sup>

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

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

> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let callback = err => {
  console.log("on error, err:" + JSON.stringify(err));
}
let tcpServer = socket.constructTCPSocketServerInstance();
tcpServer.on('connect', function(client) {
  client.on('error', callback);
  // 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
  client.off('error', callback);
  client.off('error');
});
```

Y
Yangys 已提交
2626
## TCP 错误码说明
Y
Yangys 已提交
2627

Y
Yangys 已提交
2628
TCP 其余错误码映射形式为:2301000 + Linux内核错误码。
Y
Yangys 已提交
2629

Y
Yangys 已提交
2630
错误码的详细介绍参见[Socket错误码](../errorcodes/errorcode-net-socket.md)
Y
Yangys 已提交
2631

L
liyufan 已提交
2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657
## 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>

Y
Yangys 已提交
2658
bind(address: NetAddress, callback: AsyncCallback\<void\>): void
L
liyufan 已提交
2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息                 |
L
liyufan 已提交
2676
| ------- | ----------------------- |
L
liyufan 已提交
2677 2678 2679 2680 2681 2682 2683 2684
| 401     | Parameter error.        |
| 201     | Permission denied.      |
| 2303198 | Address already in use. |
| 2300002 | System internal error.  |

**示例:**

```js
Y
Yangys 已提交
2685
tls.bind({ address: '192.168.xx.xxx', port: xxxx, family: 1 }, err => {
Y
Yangys 已提交
2686 2687 2688 2689 2690
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
L
liyufan 已提交
2691 2692 2693 2694 2695
});
```

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

Y
Yangys 已提交
2696
bind(address: NetAddress): Promise\<void\>
L
liyufan 已提交
2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707

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

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

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

**参数:**

| 参数名  | 类型                               | 必填 | 说明                                                   |
| ------- | ---------------------------------- | ---- | ------------------------------------------------------ |
L
liyufan 已提交
2708
| address | [NetAddress](#netaddress)          | 是   | 目标地址信息,参考[NetAddress](#netaddress)。 |
L
liyufan 已提交
2709 2710 2711 2712 2713 2714 2715 2716 2717 2718

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息                 |
L
liyufan 已提交
2719
| ------- | ----------------------- |
L
liyufan 已提交
2720 2721 2722 2723 2724 2725 2726 2727
| 401     | Parameter error.        |
| 201     | Permission denied.      |
| 2303198 | Address already in use. |
| 2300002 | System internal error.  |

**示例:**

```js
Y
Yangys 已提交
2728
let promise = tls.bind({ address: '192.168.xx.xxx', port: xxxx, family: 1 });
L
liyufan 已提交
2729
promise.then(() => {
Y
Yangys 已提交
2730
  console.log('bind success');
L
liyufan 已提交
2731
}).catch(err => {
Y
Yangys 已提交
2732
  console.log('bind fail');
L
liyufan 已提交
2733 2734 2735 2736 2737
});
```

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

Y
Yangys 已提交
2738
getState(callback: AsyncCallback\<SocketStateBase\>): void
L
liyufan 已提交
2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
2753
| ------- | ------------------------------ |
L
liyufan 已提交
2754 2755 2756 2757 2758 2759
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**示例:**

```js
Y
Yangys 已提交
2760
let promise = tls.bind({ address: '192.168.xx.xxx', port: xxxx, family: 1 }, err => {
Y
Yangys 已提交
2761 2762 2763 2764 2765
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
L
liyufan 已提交
2766 2767
});
tls.getState((err, data) => {
Y
Yangys 已提交
2768 2769 2770 2771 2772
  if (err) {
    console.log('getState fail');
    return;
  }
  console.log('getState success:' + JSON.stringify(data));
L
liyufan 已提交
2773 2774 2775 2776 2777
});
```

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

Y
Yangys 已提交
2778
getState(): Promise\<SocketStateBase\>
L
liyufan 已提交
2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792

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

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
2793
| ------- | ------------------------------ |
L
liyufan 已提交
2794 2795 2796 2797 2798 2799
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**示例:**

```js
Y
Yangys 已提交
2800
let promiseBind = tls.bind({ address: '192.168.xx.xxx', port: xxxx, family: 1 });
Y
Yangys 已提交
2801
promiseBind.then(() => {
Y
Yangys 已提交
2802
  console.log('bind success');
Y
Yangys 已提交
2803
}).catch((err) => {
Y
Yangys 已提交
2804
  console.log('bind fail');
L
liyufan 已提交
2805 2806 2807
});
let promise = tls.getState();
promise.then(() => {
Y
Yangys 已提交
2808
  console.log('getState success');
L
liyufan 已提交
2809
}).catch(err => {
Y
Yangys 已提交
2810
  console.log('getState fail');
L
liyufan 已提交
2811 2812 2813 2814 2815
});
```

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

Y
Yangys 已提交
2816
setExtraOptions(options: TCPExtraOptions, callback: AsyncCallback\<void\>): void
L
liyufan 已提交
2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
2832
| ------- | -----------------------------  |
L
liyufan 已提交
2833 2834 2835 2836 2837 2838 2839
| 401     | Parameter error.               |
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**示例:**

```js
Y
Yangys 已提交
2840
tls.bind({ address: '192.168.xx.xxx', port: xxxx, family: 1 }, err => {
Y
Yangys 已提交
2841 2842 2843 2844 2845
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
L
liyufan 已提交
2846 2847 2848
});

tls.setExtraOptions({
Y
Yangys 已提交
2849 2850 2851
  keepAlive: true,
  OOBInline: true,
  TCPNoDelay: true,
Y
Yangys 已提交
2852
  socketLinger: { on: true, linger: 10 },
Y
Yangys 已提交
2853 2854 2855 2856
  receiveBufferSize: 1000,
  sendBufferSize: 1000,
  reuseAddress: true,
  socketTimeout: 3000,
Y
Yangys 已提交
2857
}, err => {
Y
Yangys 已提交
2858 2859 2860 2861 2862
  if (err) {
    console.log('setExtraOptions fail');
    return;
  }
  console.log('setExtraOptions success');
L
liyufan 已提交
2863 2864 2865 2866 2867
});
```

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

Y
Yangys 已提交
2868
setExtraOptions(options: TCPExtraOptions): Promise\<void\>
L
liyufan 已提交
2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
2889
| ------- | ------------------------------ |
L
liyufan 已提交
2890 2891 2892 2893 2894 2895 2896
| 401     | Parameter error.               |
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**示例:**

```js
Y
Yangys 已提交
2897
tls.bind({ address: '192.168.xx.xxx', port: xxxx, family: 1 }, err => {
Y
Yangys 已提交
2898 2899 2900 2901 2902
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
L
liyufan 已提交
2903 2904
});
let promise = tls.setExtraOptions({
Y
Yangys 已提交
2905 2906 2907
  keepAlive: true,
  OOBInline: true,
  TCPNoDelay: true,
Y
Yangys 已提交
2908
  socketLinger: { on: true, linger: 10 },
Y
Yangys 已提交
2909 2910 2911 2912
  receiveBufferSize: 1000,
  sendBufferSize: 1000,
  reuseAddress: true,
  socketTimeout: 3000,
L
liyufan 已提交
2913 2914
});
promise.then(() => {
Y
Yangys 已提交
2915
  console.log('setExtraOptions success');
L
liyufan 已提交
2916
}).catch(err => {
Y
Yangys 已提交
2917
  console.log('setExtraOptions fail');
L
liyufan 已提交
2918 2919 2920
});
```

X
xujie 已提交
2921
### on('message')<sup>9+</sup>
Y
Yangys 已提交
2922

Y
Yangys 已提交
2923
on(type: 'message', callback: Callback<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}>): void;
Y
Yangys 已提交
2924 2925 2926 2927 2928 2929 2930 2931 2932 2933

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

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                      |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
| type     | string                                                       | 是   | 订阅的事件类型。'message':接收消息事件。 |
Y
Yangys 已提交
2934
| callback | Callback\<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo)}\> | 是   | 回调函数。message:接收到的消息;remoteInfo:socket连接信息。 |
Y
Yangys 已提交
2935 2936 2937 2938 2939

**示例:**

```js
let tls = socket.constructTLSSocketInstance();
X
xujie 已提交
2940
let messageView = '';
Y
Yangys 已提交
2941 2942 2943 2944
tls.on('message', value => {
  for (var i = 0; i < value.message.length; i++) {
    let messages = value.message[i]
    let message = String.fromCharCode(messages);
X
xujie 已提交
2945
    messageView += message;
Y
Yangys 已提交
2946 2947 2948 2949 2950 2951
  }
  console.log('on message message: ' + JSON.stringify(messageView));
  console.log('remoteInfo: ' + JSON.stringify(value.remoteInfo));
});
```

X
xujie 已提交
2952
### off('message')<sup>9+</sup>
Y
Yangys 已提交
2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967

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

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

> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                      |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
| type     | string                                                       | 是   | 订阅的事件类型。'message':接收消息事件。 |
Y
Yangys 已提交
2968
| callback | Callback<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo)}> | 否   | 回调函数。message:接收到的消息;remoteInfo:socket连接信息。 |
Y
Yangys 已提交
2969 2970 2971 2972 2973

**示例:**

```js
let tls = socket.constructTLSSocketInstance();
X
xujie 已提交
2974
let messageView = '';
Y
Yangys 已提交
2975 2976 2977 2978
let callback = value => {
  for (var i = 0; i < value.message.length; i++) {
    let messages = value.message[i]
    let message = String.fromCharCode(messages);
X
xujie 已提交
2979
    messageView += message;
Y
Yangys 已提交
2980 2981 2982 2983 2984 2985 2986 2987
  }
  console.log('on message message: ' + JSON.stringify(messageView));
  console.log('remoteInfo: ' + JSON.stringify(value.remoteInfo));
}
tls.on('message', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tls.off('message', callback);
```
X
xujie 已提交
2988
### on('connect' | 'close')<sup>9+</sup>
Y
Yangys 已提交
2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014

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

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

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

**参数:**

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

**示例:**

```js
let tls = socket.constructTLSSocketInstance();
tls.on('connect', () => {
  console.log("on connect success")
});
tls.on('close', () => {
  console.log("on close success")
});
```

X
xujie 已提交
3015
### off('connect' | 'close')<sup>9+</sup>
Y
Yangys 已提交
3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051

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

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

> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

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

**参数:**

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

**示例:**

```js
let tls = socket.constructTLSSocketInstance();
let callback1 = () => {
  console.log("on connect success");
}
tls.on('connect', callback1);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tls.off('connect', callback1);
tls.off('connect');
let callback2 = () => {
  console.log("on close success");
}
tls.on('close', callback2);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tls.off('close', callback2);
```

X
xujie 已提交
3052
### on('error')<sup>9+</sup>
Y
Yangys 已提交
3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075

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

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

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

**参数:**

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

**示例:**

```js
let tls = socket.constructTLSSocketInstance();
tls.on('error', err => {
  console.log("on error, err:" + JSON.stringify(err))
});
```

X
xujie 已提交
3076
### off('error')<sup>9+</sup>
Y
Yangys 已提交
3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105

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

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

> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

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

**参数:**

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

**示例:**

```js
let tls = socket.constructTLSSocketInstance();
let callback = err => {
  console.log("on error, err:" + JSON.stringify(err));
}
tls.on('error', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tls.off('error', callback);
```

L
liyufan 已提交
3106 3107
### connect<sup>9+</sup>

Y
Yangys 已提交
3108
connect(options: TLSConnectOptions, callback: AsyncCallback\<void\>): void
L
liyufan 已提交
3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息                                      |
L
liyufan 已提交
3124
| ------- | -------------------------------------------- |
L
liyufan 已提交
3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143
| 401     | Parameter error.                             |
| 2303104 | Interrupted system call.                     |
| 2303109 | Bad file number.                             |
| 2303111 | Resource temporarily unavailable try again.  |
| 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
Y
YOUR_NAME 已提交
3144
let tlsTwoWay = socket.constructTLSSocketInstance(); // Two way authentication
Y
Yangys 已提交
3145
tlsTwoWay.bind({ address: '192.168.xxx.xxx', port: 8080, family: 1 }, err => {
Y
Yangys 已提交
3146 3147 3148 3149 3150
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
L
liyufan 已提交
3151 3152
});
let options = {
Y
Yangys 已提交
3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
L
liyufan 已提交
3169
};
Y
YOUR_NAME 已提交
3170
tlsTwoWay.connect(options, (err, data) => {
Y
Yangys 已提交
3171 3172
  console.error("connect callback error" + err);
  console.log(JSON.stringify(data));
L
liyufan 已提交
3173 3174 3175
});

let tlsOneWay = socket.constructTLSSocketInstance(); // One way authentication
Y
Yangys 已提交
3176
tlsOneWay.bind({ address: '192.168.xxx.xxx', port: 8080, family: 1 }, err => {
Y
Yangys 已提交
3177 3178 3179 3180 3181
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
L
liyufan 已提交
3182 3183
});
let oneWayOptions = {
Y
Yangys 已提交
3184 3185 3186 3187 3188 3189 3190 3191 3192
  address: {
    address: "192.168.xxx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    ca: ["xxxx", "xxxx"],
    cipherSuite: "AES256-SHA256",
  },
L
liyufan 已提交
3193
};
Y
YOUR_NAME 已提交
3194
tlsOneWay.connect(oneWayOptions, (err, data) => {
Y
Yangys 已提交
3195 3196
  console.error("connect callback error" + err);
  console.log(JSON.stringify(data));
L
liyufan 已提交
3197 3198 3199 3200 3201
});
```

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

Y
Yangys 已提交
3202
connect(options: TLSConnectOptions): Promise\<void\>
L
liyufan 已提交
3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217

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

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

**参数:**

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

**返回值:**

| 类型                                        | 说明                          |
| ------------------------------------------- | ----------------------------- |
Y
Yangys 已提交
3218
| Promise\<void\>                              | 以Promise形式返回,成功无返回,失败返回错误码,错误信息。|
L
liyufan 已提交
3219 3220 3221 3222

**错误码:**

| 错误码ID | 错误信息                                      |
L
liyufan 已提交
3223
| ------- | -------------------------------------------- |
L
liyufan 已提交
3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242
| 401     | Parameter error.                             |
| 2303104 | Interrupted system call.                     |
| 2303109 | Bad file number.                             |
| 2303111 | Resource temporarily unavailable try again.  |
| 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
Y
YOUR_NAME 已提交
3243
let tlsTwoWay = socket.constructTLSSocketInstance(); // Two way authentication
Y
Yangys 已提交
3244
tlsTwoWay.bind({ address: '192.168.xxx.xxx', port: 8080, family: 1 }, err => {
Y
Yangys 已提交
3245 3246 3247 3248 3249
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
L
liyufan 已提交
3250 3251
});
let options = {
Y
Yangys 已提交
3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
L
liyufan 已提交
3268
};
Y
YOUR_NAME 已提交
3269
tlsTwoWay.connect(options).then(data => {
Y
Yangys 已提交
3270
  console.log(JSON.stringify(data));
L
liyufan 已提交
3271
}).catch(err => {
Y
Yangys 已提交
3272
  console.error(err);
L
liyufan 已提交
3273 3274 3275
});

let tlsOneWay = socket.constructTLSSocketInstance(); // One way authentication
Y
Yangys 已提交
3276
tlsOneWay.bind({ address: '192.168.xxx.xxx', port: 8080, family: 1 }, err => {
Y
Yangys 已提交
3277 3278 3279 3280 3281
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
L
liyufan 已提交
3282 3283
});
let oneWayOptions = {
Y
Yangys 已提交
3284 3285 3286 3287 3288 3289 3290 3291 3292
  address: {
    address: "192.168.xxx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    ca: ["xxxx", "xxxx"],
    cipherSuite: "AES256-SHA256",
  },
L
liyufan 已提交
3293 3294
};
tlsOneWay.connect(oneWayOptions).then(data => {
Y
Yangys 已提交
3295
  console.log(JSON.stringify(data));
L
liyufan 已提交
3296
}).catch(err => {
Y
Yangys 已提交
3297
  console.error(err);
L
liyufan 已提交
3298 3299 3300 3301 3302
});
```

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

Y
Yangys 已提交
3303
getRemoteAddress(callback: AsyncCallback\<NetAddress\>): void
L
liyufan 已提交
3304 3305 3306 3307 3308 3309 3310 3311 3312

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

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

**参数:**

| 参数名   | 类型                                              | 必填 | 说明       |
| -------- | ------------------------------------------------- | ---- | ---------- |
Y
Yangys 已提交
3313
| callback | AsyncCallback\<[NetAddress](#netaddress)\> | 是   | 回调函数。成功返回对端的socket地址,失败返回错误码,错误信息。 |
L
liyufan 已提交
3314 3315 3316 3317

**错误码:**

| 错误码ID | 错误信息                        |
Y
YOUR_NAME 已提交
3318
| ------- | -----------------------------  |
L
liyufan 已提交
3319 3320 3321 3322 3323 3324 3325
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**示例:**

```js
tls.getRemoteAddress((err, data) => {
Y
Yangys 已提交
3326 3327 3328 3329 3330
  if (err) {
    console.log('getRemoteAddress fail');
    return;
  }
  console.log('getRemoteAddress success:' + JSON.stringify(data));
L
liyufan 已提交
3331 3332 3333 3334 3335
});
```

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

Y
Yangys 已提交
3336
getRemoteAddress(): Promise\<NetAddress\>
L
liyufan 已提交
3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350

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

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息                        |
Y
YOUR_NAME 已提交
3351
| ------- | ------------------------------ |
L
liyufan 已提交
3352 3353 3354 3355 3356 3357 3358 3359
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**示例:**

```js
let promise = tls.getRemoteAddress();
promise.then(() => {
Y
Yangys 已提交
3360
  console.log('getRemoteAddress success');
L
liyufan 已提交
3361
}).catch(err => {
Y
Yangys 已提交
3362
  console.log('getRemoteAddress fail');
L
liyufan 已提交
3363 3364 3365 3366 3367
});
```

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

Y
Yangys 已提交
3368
getCertificate(callback: AsyncCallback\<[X509CertRawData](#x509certrawdata9)\>): void
L
liyufan 已提交
3369 3370 3371 3372 3373 3374 3375 3376 3377

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

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

**参数:**

| 参数名   | 类型                                   | 必填 | 说明 |
| -------- | ----------------------------------------| ---- | ---------------|
Y
Yangys 已提交
3378
| callback | AsyncCallback\<[X509CertRawData](#x509certrawdata9)\>    | 是   | 回调函数,成功返回本地的证书,失败返回错误码,错误信息。|
L
liyufan 已提交
3379 3380 3381 3382

**错误码:**

| 错误码ID | 错误信息                        |
Y
YOUR_NAME 已提交
3383
| ------- | ------------------------------ |
L
liyufan 已提交
3384 3385 3386 3387 3388 3389 3390 3391
| 2303501 | SSL is null.                   |
| 2303504 | Error looking up x509.         |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getCertificate((err, data) => {
Y
Yangys 已提交
3392 3393 3394 3395 3396
  if (err) {
    console.log("getCertificate callback error = " + err);
  } else {
    console.log("getCertificate callback = " + data);
  }
L
liyufan 已提交
3397 3398 3399 3400 3401
});
```

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

Y
Yangys 已提交
3402
getCertificate():Promise\<[X509CertRawData](#x509certrawdata9)\>
L
liyufan 已提交
3403 3404 3405 3406 3407 3408 3409 3410 3411

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

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

**返回值:**

| 类型            | 说明                  |
| -------------- | -------------------- |
Y
Yangys 已提交
3412
| Promise\<[X509CertRawData](#x509certrawdata9)\> | 以Promise形式返回本地的数字证书的结果。失败返回错误码,错误信息。 |
L
liyufan 已提交
3413 3414 3415 3416

**错误码:**

| 错误码ID | 错误信息                        |
Y
YOUR_NAME 已提交
3417
| ------- | ------------------------------ |
L
liyufan 已提交
3418 3419 3420 3421 3422 3423 3424 3425
| 2303501 | SSL is null.                   |
| 2303504 | Error looking up x509.         |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getCertificate().then(data => {
Y
Yangys 已提交
3426
  console.log(data);
L
liyufan 已提交
3427
}).catch(err => {
Y
Yangys 已提交
3428
  console.error(err);
L
liyufan 已提交
3429 3430 3431 3432 3433
});
```

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

Y
Yangys 已提交
3434
getRemoteCertificate(callback: AsyncCallback\<[X509CertRawData](#x509certrawdata9)\>): void
L
liyufan 已提交
3435 3436 3437 3438 3439 3440 3441 3442 3443

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

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

**参数:**

| 参数名    | 类型                                    | 必填  | 说明           |
| -------- | ----------------------------------------| ---- | ---------------|
Y
Yangys 已提交
3444
| callback | AsyncCallback\<[X509CertRawData](#x509certrawdata9)\>  | 是   | 回调函数,返回服务端的证书。失败返回错误码,错误信息。 |
L
liyufan 已提交
3445 3446 3447 3448

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
3449
| ------- | ------------------------------ |
L
liyufan 已提交
3450 3451 3452 3453 3454 3455 3456
| 2303501 | SSL is null.                   |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getRemoteCertificate((err, data) => {
Y
Yangys 已提交
3457 3458 3459 3460 3461
  if (err) {
    console.log("getRemoteCertificate callback error = " + err);
  } else {
    console.log("getRemoteCertificate callback = " + data);
  }
L
liyufan 已提交
3462 3463 3464 3465 3466
});
```

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

Y
Yangys 已提交
3467
getRemoteCertificate():Promise\<[X509CertRawData](#x509certrawdata9)\>
L
liyufan 已提交
3468 3469 3470 3471 3472 3473 3474 3475 3476

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

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

**返回值:**

| 类型            | 说明                  |
| -------------- | -------------------- |
Y
Yangys 已提交
3477
| Promise\<[X509CertRawData](#x509certrawdata9)\> | 以Promise形式返回服务端的数字证书的结果。失败返回错误码,错误信息。 |
L
liyufan 已提交
3478 3479 3480 3481

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
3482
| ------- | ------------------------------ |
L
liyufan 已提交
3483 3484 3485 3486 3487 3488 3489
| 2303501 | SSL is null.                   |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getRemoteCertificate().then(data => {
Y
Yangys 已提交
3490
  console.log(data);
L
liyufan 已提交
3491
}).catch(err => {
Y
Yangys 已提交
3492
  console.error(err);
L
liyufan 已提交
3493 3494 3495 3496 3497
});
```

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

Y
Yangys 已提交
3498
getProtocol(callback: AsyncCallback\<string\>): void
L
liyufan 已提交
3499 3500 3501 3502 3503 3504 3505 3506 3507

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

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

**参数:**

| 参数名   | 类型                                       | 必填 | 说明           |
| -------- | ----------------------------------------| ---- | ---------------|
Y
Yangys 已提交
3508
| callback | AsyncCallback\<string\>                  | 是   | 回调函数,返回通信的协议。失败返回错误码,错误信息。|
L
liyufan 已提交
3509 3510 3511 3512

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
3513
| ------- | -----------------------------  |
L
liyufan 已提交
3514 3515 3516 3517 3518 3519 3520 3521
| 2303501 | SSL is null.                   |
| 2303505 | Error occurred in the tls system call. |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getProtocol((err, data) => {
Y
Yangys 已提交
3522 3523 3524 3525 3526
  if (err) {
    console.log("getProtocol callback error = " + err);
  } else {
    console.log("getProtocol callback = " + data);
  }
L
liyufan 已提交
3527 3528 3529 3530 3531
});
```

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

Y
Yangys 已提交
3532
getProtocol():Promise\<string\>
L
liyufan 已提交
3533 3534 3535 3536 3537 3538 3539 3540 3541

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

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

**返回值:**

| 类型            | 说明                  |
| -------------- | -------------------- |
Y
Yangys 已提交
3542
| Promise\<string\> | 以Promise形式返回通信的协议。失败返回错误码,错误信息。 |
L
liyufan 已提交
3543 3544 3545 3546

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
3547
| ------- | ------------------------------ |
L
liyufan 已提交
3548 3549 3550 3551 3552 3553 3554 3555
| 2303501 | SSL is null.                   |
| 2303505 | Error occurred in the tls system call. |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getProtocol().then(data => {
Y
Yangys 已提交
3556
  console.log(data);
L
liyufan 已提交
3557
}).catch(err => {
Y
Yangys 已提交
3558
  console.error(err);
L
liyufan 已提交
3559 3560 3561 3562 3563
});
```

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

Y
Yangys 已提交
3564
getCipherSuite(callback: AsyncCallback\<Array\<string\>\>): void
L
liyufan 已提交
3565 3566 3567 3568 3569 3570 3571 3572 3573

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

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

**参数:**

| 参数名   | 类型                                     | 必填 | 说明 |
| -------- | ----------------------------------------| ---- | ---------------|
Y
Yangys 已提交
3574
| callback | AsyncCallback\<Array\<string\>\>          | 是   | 回调函数,返回通信双方支持的加密套件。 失败返回错误码,错误信息。 |
L
liyufan 已提交
3575 3576 3577 3578

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
3579
| ------- | ------------------------------ |
L
liyufan 已提交
3580 3581 3582 3583 3584 3585 3586 3587 3588
| 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) => {
Y
Yangys 已提交
3589 3590 3591 3592 3593
  if (err) {
    console.log("getCipherSuite callback error = " + err);
  } else {
    console.log("getCipherSuite callback = " + data);
  }
L
liyufan 已提交
3594 3595 3596 3597 3598
});
```

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

Y
Yangys 已提交
3599
getCipherSuite(): Promise\<Array\<string\>\>
L
liyufan 已提交
3600 3601 3602 3603 3604 3605 3606 3607 3608

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

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

**返回值:**

| 类型                    | 说明                  |
| ---------------------- | --------------------- |
Y
Yangys 已提交
3609
| Promise\<Array\<string\>\> | 以Promise形式返回通信双方支持的加密套件。失败返回错误码,错误信息。 |
L
liyufan 已提交
3610 3611 3612 3613

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
3614
| ------- | ------------------------------ |
L
liyufan 已提交
3615 3616 3617 3618 3619 3620 3621 3622 3623
| 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 => {
Y
Yangys 已提交
3624
  console.log('getCipherSuite success:' + JSON.stringify(data));
L
liyufan 已提交
3625
}).catch(err => {
Y
Yangys 已提交
3626
  console.error(err);
L
liyufan 已提交
3627 3628 3629 3630 3631
});
```

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

Y
Yangys 已提交
3632
getSignatureAlgorithms(callback: AsyncCallback\<Array\<string\>\>): void
L
liyufan 已提交
3633 3634 3635 3636 3637 3638 3639 3640 3641

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

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

**参数:**

| 参数名   | 类型                                   | 必填 | 说明            |
| -------- | -------------------------------------| ---- | ---------------|
Y
Yangys 已提交
3642
| callback | AsyncCallback\<Array\<string\>\>         | 是   | 回调函数,返回双方支持的签名算法。  |
L
liyufan 已提交
3643 3644 3645 3646

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
3647
| ------- | ------------------------------ |
L
liyufan 已提交
3648 3649 3650 3651 3652 3653 3654
| 2303501 | SSL is null.                   |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getSignatureAlgorithms((err, data) => {
Y
Yangys 已提交
3655 3656 3657 3658 3659
  if (err) {
    console.log("getSignatureAlgorithms callback error = " + err);
  } else {
    console.log("getSignatureAlgorithms callback = " + data);
  }
L
liyufan 已提交
3660 3661 3662 3663 3664
});
```

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

Y
Yangys 已提交
3665
getSignatureAlgorithms(): Promise\<Array\<string\>\>
L
liyufan 已提交
3666 3667 3668 3669 3670 3671 3672 3673 3674

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

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

**返回值:**

| 类型                    | 说明                  |
| ---------------------- | -------------------- |
Y
Yangys 已提交
3675
| Promise\<Array\<string\>\> | 以Promise形式返回获取到的双方支持的签名算法。 |
L
liyufan 已提交
3676 3677 3678 3679

**错误码:**

| 错误码ID | 错误信息                        |
L
liyufan 已提交
3680
| ------- | ------------------------------ |
L
liyufan 已提交
3681 3682 3683 3684 3685 3686 3687
| 2303501 | SSL is null.                   |
| 2300002 | System internal error.         |

**示例:**

```js
tls.getSignatureAlgorithms().then(data => {
Y
Yangys 已提交
3688
  console.log("getSignatureAlgorithms success" + data);
L
liyufan 已提交
3689
}).catch(err => {
Y
Yangys 已提交
3690
  console.error(err);
L
liyufan 已提交
3691 3692 3693 3694 3695
});
```

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

Y
Yangys 已提交
3696
send(data: string, callback: AsyncCallback\<void\>): void
L
liyufan 已提交
3697 3698 3699 3700 3701 3702 3703 3704 3705 3706

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

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

**参数:**

| 参数名    | 类型                          | 必填 | 说明            |
| -------- | -----------------------------| ---- | ---------------|
|   data   | string                       | 是   | 发送的数据内容。   |
Y
Yangys 已提交
3707
| callback | AsyncCallback\<void\>         | 是   | 回调函数,返回TLSSocket发送数据的结果。失败返回错误码,错误信息。 |
L
liyufan 已提交
3708 3709 3710 3711

**错误码:**

| 错误码ID | 错误信息                                      |
L
liyufan 已提交
3712
| ------- | -------------------------------------------- |
L
liyufan 已提交
3713 3714
| 401     | Parameter error.                             |
| 2303501 | SSL is null.                                 |
X
xujie 已提交
3715
| 2303503 | Error in tls writing.                         |
L
liyufan 已提交
3716 3717 3718 3719 3720 3721 3722 3723
| 2303505 | Error occurred in the tls system call.       |
| 2303506 | Error clearing tls connection.               |
| 2300002 | System internal error.                       |

**示例:**

```js
tls.send("xxxx", (err) => {
Y
Yangys 已提交
3724 3725 3726 3727 3728
  if (err) {
    console.log("send callback error = " + err);
  } else {
    console.log("send success");
  }
L
liyufan 已提交
3729 3730 3731 3732 3733
});
```

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

Y
Yangys 已提交
3734
send(data: string): Promise\<void\>
L
liyufan 已提交
3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息                                      |
L
liyufan 已提交
3749
| ------- | -------------------------------------------- |
L
liyufan 已提交
3750 3751
| 401     | Parameter error.                             |
| 2303501 | SSL is null.                                 |
X
xujie 已提交
3752
| 2303503 | Error in tls writing.                         |
L
liyufan 已提交
3753 3754 3755 3756 3757 3758 3759 3760
| 2303505 | Error occurred in the tls system call.       |
| 2303506 | Error clearing tls connection.               |
| 2300002 | System internal error.                       |

**返回值:**

| 类型           | 说明                  |
| -------------- | -------------------- |
Y
Yangys 已提交
3761
| Promise\<void\> | 以Promise形式返回,返回TLSSocket发送数据的结果。失败返回错误码,错误信息。 |
L
liyufan 已提交
3762 3763 3764 3765

**示例:**

```js
Y
Yangys 已提交
3766
tls.send("xxxx").then(() => {
Y
Yangys 已提交
3767
  console.log("send success");
L
liyufan 已提交
3768
}).catch(err => {
Y
Yangys 已提交
3769
  console.error(err);
L
liyufan 已提交
3770 3771 3772 3773 3774
});
```

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

Y
Yangys 已提交
3775
close(callback: AsyncCallback\<void\>): void
L
liyufan 已提交
3776 3777 3778 3779 3780 3781 3782 3783 3784

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

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

**参数:**

| 参数名    | 类型                          | 必填 | 说明            |
| -------- | -----------------------------| ---- | ---------------|
Y
Yangys 已提交
3785
| callback | AsyncCallback\<void\>         | 是   | 回调函数,成功返回TLSSocket关闭连接的结果。 失败返回错误码,错误信息。 |
L
liyufan 已提交
3786 3787 3788 3789

**错误码:**

| 错误码ID | 错误信息                                      |
L
liyufan 已提交
3790
| ------- | -------------------------------------------- |
X
xujie 已提交
3791
| 401 | Parameter error.                                 |
L
liyufan 已提交
3792 3793 3794 3795 3796 3797 3798 3799 3800
| 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) => {
Y
Yangys 已提交
3801 3802 3803 3804 3805
  if (err) {
    console.log("close callback error = " + err);
  } else {
    console.log("close success");
  }
L
liyufan 已提交
3806 3807 3808 3809 3810
});
```

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

Y
Yangys 已提交
3811
close(): Promise\<void\>
L
liyufan 已提交
3812 3813 3814 3815 3816 3817 3818 3819 3820

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

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

**返回值:**

| 类型           | 说明                  |
| -------------- | -------------------- |
Y
Yangys 已提交
3821
| Promise\<void\> | 以Promise形式返回,返回TLSSocket关闭连接的结果。失败返回错误码,错误信息。 |
L
liyufan 已提交
3822 3823 3824 3825

**错误码:**

| 错误码ID | 错误信息                                      |
L
liyufan 已提交
3826
| ------- | -------------------------------------------- |
X
xujie 已提交
3827
| 401 | Parameter error.                                 |
L
liyufan 已提交
3828 3829 3830 3831 3832 3833 3834 3835
| 2303501 | SSL is null.                                 |
| 2303505 | Error occurred in the tls system call.       |
| 2303506 | Error clearing tls connection.               |
| 2300002 | System internal error.                       |

**示例:**

```js
Y
Yangys 已提交
3836
tls.close().then(() => {
Y
Yangys 已提交
3837
  console.log("close success");
Y
Yangys 已提交
3838
}).catch((err) => {
Y
Yangys 已提交
3839
  console.error(err);
L
liyufan 已提交
3840 3841 3842 3843 3844 3845 3846 3847 3848
});
```

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

TLS连接的操作。

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

L
liyufan 已提交
3849 3850 3851 3852
| 名称          | 类型                                     | 必填 | 说明            |
| -------------- | ------------------------------------- | ---  |-------------- |
| address        | [NetAddress](#netaddress)             | 是  |  网关地址。       |
| secureOptions  | [TLSSecureOptions](#tlssecureoptions9) | 是 | TLS安全相关操作。|
X
xujie 已提交
3853
| ALPNProtocols  | Array\<string\>                         | 否 | ALPN协议,支持["spdy/1", "http/1.1"],默认为[]。      |
L
liyufan 已提交
3854 3855 3856 3857 3858 3859 3860

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

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

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

L
liyufan 已提交
3861 3862
| 名称                 | 类型                                                    | 必填 | 说明                                |
| --------------------- | ------------------------------------------------------ | --- |----------------------------------- |
Y
Yangys 已提交
3863
| ca                    | string \| Array\<string\>                               | 是 | 服务端的ca证书,用于认证校验服务端的数字证书。|
L
liyufan 已提交
3864 3865
| cert                  | string                                                  | 否 | 本地客户端的数字证书。                 |
| key                   | string                                                  | 否 | 本地数字证书的私钥。                   |
Z
zhanghaifeng 已提交
3866
| password                | string                                                  | 否 | 读取私钥的密码。                      |
X
xujie 已提交
3867 3868 3869 3870
| protocols             | [Protocol](#protocol9) \|Array\<[Protocol](#protocol9)\> | 否 | TLS的协议版本,默认为"TLSv1.2"。                  |
| useRemoteCipherPrefer | boolean                                                 | 否 | 优先使用对等方的密码套件。        |
| signatureAlgorithms   | string                                                 | 否 | 通信过程中的签名算法,默认为"" 。              |
| cipherSuite           | string                                                 | 否 | 通信过程中的加密套件,默认为"" 。              |
L
liyufan 已提交
3871 3872 3873 3874 3875 3876 3877

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

TLS通信的协议版本。

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

L
liyufan 已提交
3878 3879 3880 3881
| 名称      |    值    | 说明                |
| --------- | --------- |------------------ |
| TLSv12    | "TLSv1.2" | 使用TLSv1.2协议通信。 |
| TLSv13    | "TLSv1.3" | 使用TLSv1.3协议通信。 |
L
liyufan 已提交
3882 3883 3884 3885 3886 3887 3888

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

存储证书的数据。

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

X
xujie 已提交
3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968
## socket.constructTLSSocketServerInstance<sup>10+</sup>

constructTLSSocketServerInstance(): TLSSocketServer

创建并返回一个TLSSocketServer对象。

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

**返回值:**

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

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
```

## TLSSocketServer<sup>10+</sup>

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

### listen<sup>10+</sup>

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

绑定IP地址和端口,在TLSSocketServer上bind成功之后,监听客户端的连接,创建和初始化TLS会话,实现建立连接过程,加载证书秘钥并验证,使用callback方式作为异步方法。

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息                                    |
| -------- | ------------------------------------------- |
| 401      | Parameter error.                            |
| 201      | Permission denied.                          |
| 2300002  | System internal error.                      |
| 2303109  | Bad file number.                            |
| 2303111  | Resource temporarily unavailable try again. |
| 2303198  | Address already in use.                     |
| 2303199  | Cannot assign requested address.            |
| 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.              |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
X
xujie 已提交
3969 3970
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
X
xujie 已提交
3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034
});
```

### listen<sup>10+</sup>

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

绑定IP地址和端口,在TLSSocketServer上bind成功之后,监听客户端的连接,并创建和初始化TLS会话,实现建立连接过程,加载证书秘钥并验证,使用Promise方式作为异步方法。

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息                                    |
| -------- | ------------------------------------------- |
| 401      | Parameter error.                            |
| 201      | Permission denied.                          |
| 2300002  | System internal error.                      |
| 2303109  | Bad file number.                            |
| 2303111  | Resource temporarily unavailable try again. |
| 2303198  | Address already in use.                     |
| 2303199  | Cannot assign requested address.            |
| 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.              |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
X
xujie 已提交
4035 4036
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
X
xujie 已提交
4037
}).catch(err => {
X
xujie 已提交
4038
  console.log(err);
X
xujie 已提交
4039 4040 4041 4042 4043 4044 4045 4046 4047
});
```

### getState<sup>10+</sup>

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

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

X
xujie 已提交
4048 4049 4050
> **说明:**
> listen方法调用成功后,才可调用此方法。

X
xujie 已提交
4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088
**系统能力**:SystemCapability.Communication.NetStack

**参数:**

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

**错误码:**

| 错误码ID | 错误信息                        |
| -------- | ------------------------------- |
| 401      | Parameter error.                |
| 2303188  | Socket operation on non-socket. |
| 2300002  | System internal error.          |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
X
xujie 已提交
4089 4090
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
X
xujie 已提交
4091
  return;
X
xujie 已提交
4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108
});

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

### getState<sup>10+</sup>

getState(): Promise\<SocketStateBase\>

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

X
xujie 已提交
4109 4110 4111
> **说明:**
> listen方法调用成功后,才可调用此方法。

X
xujie 已提交
4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148
**系统能力**:SystemCapability.Communication.NetStack

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息                        |
| -------- | ------------------------------- |
| 2303188  | Socket operation on non-socket. |
| 2300002  | System internal error.          |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
X
xujie 已提交
4149 4150
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
X
xujie 已提交
4151
}).catch(err => {
X
xujie 已提交
4152
  console.log(err);
X
xujie 已提交
4153
  return;
X
xujie 已提交
4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168
});
let promise = tlsServer.getState();
promise.then(() => {
  console.log('getState success');
}).catch(err => {
  console.log('getState fail');
});
```

### setExtraOptions<sup>10+</sup>

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

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

X
xujie 已提交
4169 4170 4171
> **说明:**
> listen方法调用成功后,才可调用此方法。

X
xujie 已提交
4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210
**系统能力**:SystemCapability.Communication.NetStack

**参数:**

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

**错误码:**

| 错误码ID | 错误信息                        |
| -------- | ------------------------------- |
| 401      | Parameter error.                |
| 2303188  | Socket operation on non-socket. |
| 2300002  | System internal error.          |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
X
xujie 已提交
4211 4212
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
X
xujie 已提交
4213
  return;
X
xujie 已提交
4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238
});
tlsServer.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>10+</sup>

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

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

X
xujie 已提交
4239 4240 4241
> **说明:**
> listen方法调用成功后,才可调用此方法。

X
xujie 已提交
4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285
**系统能力**:SystemCapability.Communication.NetStack

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息                        |
| -------- | ------------------------------- |
| 401      | Parameter error.                |
| 2303188  | Socket operation on non-socket. |
| 2300002  | System internal error.          |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
X
xujie 已提交
4286 4287
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
X
xujie 已提交
4288
}).catch(err => {
X
xujie 已提交
4289
  console.log(err);
X
xujie 已提交
4290
  return;
X
xujie 已提交
4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314
});
let promise = tlsServer.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');
});
```

### getCertificate<sup>10+</sup>

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

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

X
xujie 已提交
4315 4316 4317
> **说明:**
> listen方法调用成功后,才可调用此方法。

X
xujie 已提交
4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338
**系统能力**:SystemCapability.Communication.NetStack

**参数:**

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

**错误码:**

| 错误码ID | 错误信息               |
| -------- | ---------------------- |
| 401      | Parameter error.       |
| 2303501  | SSL is null.           |
| 2303504  | Error looking up x509. |
| 2300002  | System internal error. |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
X
xujie 已提交
4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375
tlsServer.getCertificate((err, data) => {
  if (err) {
    console.log("getCertificate callback error = " + err);
  } else {
    console.log("getCertificate callback = " + data);
  }
});
```

### getCertificate<sup>10+</sup>

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

在TLSSocketServer通信连接之后,获取本地的数字证书,使用Promise方式作为异步方法。

X
xujie 已提交
4376 4377 4378
> **说明:**
> listen方法调用成功后,才可调用此方法。

X
xujie 已提交
4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398
**系统能力**:SystemCapability.Communication.NetStack

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息               |
| -------- | ---------------------- |
| 2303501  | SSL is null.           |
| 2303504  | Error looking up x509. |
| 2300002  | System internal error. |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
}).catch(err => {
  console.log(err);
  return;
});
X
xujie 已提交
4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435
tlsServer.getCertificate().then(data => {
  console.log(data);
}).catch(err => {
  console.error(err);
});
```

### getProtocol<sup>10+</sup>

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

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

X
xujie 已提交
4436 4437 4438
> **说明:**
> listen方法调用成功后,才可调用此方法。

X
xujie 已提交
4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459
**系统能力**:SystemCapability.Communication.NetStack

**参数:**

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

**错误码:**

| 错误码ID | 错误信息                               |
| -------- | -------------------------------------- |
| 401      | Parameter error.                       |
| 2303501  | SSL is null.                           |
| 2303505  | Error occurred in the tls system call. |
| 2300002  | System internal error.                 |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
X
xujie 已提交
4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496
tlsServer.getProtocol((err, data) => {
  if (err) {
    console.log("getProtocol callback error = " + err);
  } else {
    console.log("getProtocol callback = " + data);
  }
});
```

### getProtocol<sup>10+</sup>

getProtocol():Promise\<string\>

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

X
xujie 已提交
4497 4498 4499
> **说明:**
> listen方法调用成功后,才可调用此方法。

X
xujie 已提交
4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519
**系统能力**:SystemCapability.Communication.NetStack

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息                               |
| -------- | -------------------------------------- |
| 2303501  | SSL is null.                           |
| 2303505  | Error occurred in the tls system call. |
| 2300002  | System internal error.                 |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
X
xujie 已提交
4542 4543 4544 4545 4546 4547 4548
tlsServer.getProtocol().then(data => {
  console.log(data);
}).catch(err => {
  console.error(err);
});
```

X
fix  
xujie 已提交
4549
### on('connect')<sup>10+</sup>
X
xujie 已提交
4550 4551 4552 4553 4554

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

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

X
xujie 已提交
4555 4556 4557
> **说明:**
> listen方法调用成功后,才可调用此方法。

X
xujie 已提交
4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576
**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                                    | 必填 | 说明                                  |
| -------- | ------------------------------------------------------- | ---- | ------------------------------------- |
| type     | string                                                  | 是   | 订阅的事件类型。'connect':连接事件。 |
| callback | Callback<[TLSSocketConnection](#tlssocketconnection10)> | 是   | 回调函数。                            |

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
X
xujie 已提交
4599 4600 4601 4602 4603
tlsServer.on('connect', function(data) {
  console.log(JSON.stringify(data))
});
```

X
fix  
xujie 已提交
4604
### off('connect')<sup>10+</sup>
X
xujie 已提交
4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634

off(type: 'connect', callback?: Callback\<TLSSocketConnection\>): void

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

> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

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

**参数:**

| 参数名   | 类型                                                    | 必填 | 说明                                  |
| -------- | ------------------------------------------------------- | ---- | ------------------------------------- |
| type     | string                                                  | 是   | 订阅的事件类型。'connect':连接事件。 |
| callback | Callback<[TLSSocketConnection](#tlssocketconnection10)> | 否   | 回调函数。                            |

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
let callback = data => {
  console.log('on connect message: ' + JSON.stringify(data));
}
X
xujie 已提交
4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
}).catch(err => {
  console.log(err);
  return;
});
X
xujie 已提交
4659 4660 4661 4662 4663 4664
tlsServer.on('connect', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tlsServer.off('connect', callback);
tlsServer.off('connect');
```

X
fix  
xujie 已提交
4665
### on('error')<sup>10+</sup>
X
xujie 已提交
4666 4667 4668 4669 4670

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

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

X
xujie 已提交
4671 4672 4673
> **说明:**
> listen方法调用成功后,才可调用此方法。

X
xujie 已提交
4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692
**系统能力**:SystemCapability.Communication.NetStack

**参数:**

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

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
X
xujie 已提交
4715 4716 4717 4718 4719
tlsServer.on('error', err => {
  console.log("on error, err:" + JSON.stringify(err))
});
```

X
fix  
xujie 已提交
4720
### off('error')<sup>10+</sup>
X
xujie 已提交
4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750

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

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

> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
let callback = err => {
  console.log("on error, err:" + JSON.stringify(err));
}
X
xujie 已提交
4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
}).catch(err => {
  console.log(err);
  return;
});
X
xujie 已提交
4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825
tlsServer.on('error', callback);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
tlsServer.off('error', callback);
tlsServer.off('error');
```

## TLSSocketConnection<sup>10+</sup>

TLSSocketConnection连接,即TLSSocket客户端与服务端的连接。在调用TLSSocketConnection的方法前,需要先获取TLSSocketConnection对象。

> **说明:**
> 客户端与服务端成功建立连接后,才能通过返回的TLSSocketConnection对象调用相应的接口。

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

### 属性

| 名称     | 类型   | 必填 | 说明                                  |
| -------- | ------ | ---- | ------------------------------------- |
| clientId | number | 是   | 客户端与TLSSocketServer建立连接的id。 |

### send<sup>10+</sup>

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

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

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

**参数:**

| 参数名   | 类型                  | 必填 | 说明                                             |
| -------- | --------------------- | ---- | ------------------------------------------------ |
| data     | string                | 是   | TLSSocketServer发送数据所需要的参数。            |
| callback | AsyncCallback\<void\> | 是   | 回调函数,成功返回空,失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                               |
| -------- | -------------------------------------- |
| 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
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
X
xujie 已提交
4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893
tlsServer.on('connect', function(client) {
  client.send({data: 'Hello, client!'}, err => {
    if (err) {
        console.log('send fail');
        return;
    }
    console.log('send success');
  });
});
```

### send<sup>10+</sup>

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

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

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

**参数:**

| 参数名 | 类型   | 必填 | 说明                                  |
| ------ | ------ | ---- | ------------------------------------- |
| data   | string | 是   | TLSSocketServer发送数据所需要的参数。 |

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息                               |
| -------- | -------------------------------------- |
| 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
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
}).catch(err => {
  console.log(err);
  return;
});
X
xujie 已提交
4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955
tlsServer.on('connect', function(client) {
  let promise = client.send({data: 'Hello, client!'});
  promise.then(() => {
    console.log('send success');
  }).catch(err => {
    console.log('send fail');
  });
});
```

### close<sup>10+</sup>

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

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

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

**参数:**

| 参数名   | 类型                  | 必填 | 说明                                             |
| -------- | --------------------- | ---- | ------------------------------------------------ |
| callback | AsyncCallback\<void\> | 是   | 回调函数,成功返回空,失败返回错误码,错误信息。 |

**错误码:**

| 错误码ID | 错误信息                               |
| -------- | -------------------------------------- |
| 401      | Parameter error.                       |
| 2303501  | SSL is null.                           |
| 2303505  | Error occurred in the tls system call. |
| 2303506  | Error clearing tls connection.         |
| 2300002  | System internal error.                 |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
tlsServer.on('connect', function(client) {
  client.close(err => {
    if (err) {
      console.log('close fail');
      return;
    }
    console.log('close success');
  });
});
```

X
xujie 已提交
4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015
### close<sup>10+</sup>

close(): Promise\<void\>

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

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息                               |
| -------- | -------------------------------------- |
| 2303501  | SSL is null.                           |
| 2303505  | Error occurred in the tls system call. |
| 2303506  | Error clearing tls connection.         |
| 2300002  | System internal error.                 |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
}).catch(err => {
  console.log(err);
  return;
});
X
xujie 已提交
5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075
tlsServer.on('connect', function(client) {
  let promise = client.close();
  promise.then(() => {
    console.log('close success');
  }).catch(err => {
    console.log('close fail');
  });
});
```

### getRemoteAddress<sup>10+</sup>

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息                        |
| -------- | ------------------------------- |
| 401      | Parameter error.                |
| 2303188  | Socket operation on non-socket. |
| 2300002  | System internal error.          |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
X
xujie 已提交
5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133
tlsServer.on('connect', function(client) {
  client.getRemoteAddress((err, data) => {
    if (err) {
      console.log('getRemoteAddress fail');
      return;
    }
    console.log('getRemoteAddress success:' + JSON.stringify(data));
  });
});
```

### getRemoteAddress<sup>10+</sup>

getRemoteAddress(): Promise\<NetAddress\>

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

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息                        |
| -------- | ------------------------------- |
| 2303188  | Socket operation on non-socket. |
| 2300002  | System internal error.          |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
}).catch(err => {
  console.log(err);
  return;
});
X
xujie 已提交
5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192
tlsServer.on('connect', function(client) {
  client.getRemoteAddress().then(data => {
    console.log('getRemoteAddress success:' + JSON.stringify(data));
  }).catch(err => {
    console.error(err);
  });
});
```

### getRemoteCertificate<sup>10+</sup>

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

在TLSSocketServer通信连接成功之后,获取对端的数字证书,该接口只适用于客户端向服务端发送证书时,使用callback方式作为异步方法。

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息               |
| -------- | ---------------------- |
| 401      | Parameter error.       |
| 2303501  | SSL is null.           |
| 2300002  | System internal error. |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
X
xujie 已提交
5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250
tlsServer.on('connect', function(client) {
  client.getRemoteCertificate((err, data) => {
    if (err) {
      console.log("getRemoteCertificate callback error = " + err);
    } else {
      console.log("getRemoteCertificate callback = " + data);
    }
  });
});
```

### getRemoteCertificate<sup>10+</sup>

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

在TLSSocketServer通信连接成功之后,获取对端的数字证书,该接口只适用于客户端向服务端发送证书时,使用Promise方式作为异步方法。

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息               |
| -------- | ---------------------- |
| 2303501  | SSL is null.           |
| 2300002  | System internal error. |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
}).catch(err => {
  console.log(err);
  return;
});
X
xujie 已提交
5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311
tlsServer.on('connect', function(client) {
  client.getRemoteCertificate().then(data => {
    console.log('getRemoteCertificate success:' + JSON.stringify(data));
  }).catch(err => {
    console.error(err);
  });
});
```

### getCipherSuite<sup>10+</sup>

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息                               |
| -------- | -------------------------------------- |
| 401      | Parameter error.                       |
| 2303501  | SSL is null.                           |
| 2303502  | Error in tls reading.                  |
| 2303505  | Error occurred in the tls system call. |
| 2300002  | System internal error.                 |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
X
xujie 已提交
5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371
tlsServer.on('connect', function(client) {
  client.getCipherSuite((err, data) => {
    if (err) {
      console.log("getCipherSuite callback error = " + err);
    } else {
      console.log("getCipherSuite callback = " + data);
    }
  });
});
```

### getCipherSuite<sup>10+</sup>

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

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

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息                               |
| -------- | -------------------------------------- |
| 2303501  | SSL is null.                           |
| 2303502  | Error in tls reading.                  |
| 2303505  | Error occurred in the tls system call. |
| 2300002  | System internal error.                 |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
}).catch(err => {
  console.log(err);
  return;
});
X
xujie 已提交
5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430
tlsServer.on('connect', function(client) {
  client.getCipherSuite().then(data => {
    console.log('getCipherSuite success:' + JSON.stringify(data));
  }).catch(err => {
    console.error(err);
  });
});
```

### getSignatureAlgorithms<sup>10+</sup>

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

在TLSSocketServer通信连接成功之后,获取通信双方协商后签名算法,使用callback方式作为异步方法。

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息               |
| -------- | ---------------------- |
| 401      | Parameter error.       |
| 2303501  | SSL is null.           |
| 2300002  | System internal error. |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
X
xujie 已提交
5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488
tlsServer.on('connect', function(client) {
  client.getSignatureAlgorithms((err, data) => {
    if (err) {
      console.log("getSignatureAlgorithms callback error = " + err);
    } else {
      console.log("getSignatureAlgorithms callback = " + data);
    }
  });
});
```

### getSignatureAlgorithms<sup>10+</sup>

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

在TLSSocketServer通信连接成功之后,获取通信双方协商后的签名算法,使用Promise方式作为异步方法。

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息               |
| -------- | ---------------------- |
| 2303501  | SSL is null.           |
| 2300002  | System internal error. |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
}).catch(err => {
  console.log(err);
  return;
});
X
xujie 已提交
5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546
tlsServer.on('connect', function(client) {
  client.getSignatureAlgorithms().then(data => {
    console.log("getSignatureAlgorithms success" + data);
  }).catch(err => {
    console.error(err);
  });
});
```

### on('message')<sup>10+</sup>

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

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

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                      |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
| type     | string                                                       | 是   | 订阅的事件类型。'message':接收消息事件。 |
| callback | Callback<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo7)}> | 是   | 回调函数。                                |

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
X
xujie 已提交
5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620
tlsServer.on('connect', function(client) {
  client.on('message', value => {
    let messageView = '';
    for (var i = 0; i < value.message.length; i++) {
      let messages = value.message[i]
      let message = String.fromCharCode(messages);
      messageView += message;
    }
    console.log('on message message: ' + JSON.stringify(messageView));
    console.log('remoteInfo: ' + JSON.stringify(value.remoteInfo));
  });
});
```

### off('message')<sup>10+</sup>

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

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

> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                      |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
| type     | string                                                       | 是   | 订阅的事件类型。'message':接收消息事件。 |
| callback | Callback<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo7)}> | 否   | 回调函数。                                |

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let callback = value => {
  let messageView = '';
  for (var i = 0; i < value.message.length; i++) {
    let messages = value.message[i]
    let message = String.fromCharCode(messages);
    messageView += message;
  }
  console.log('on message message: ' + JSON.stringify(messageView));
  console.log('remoteInfo: ' + JSON.stringify(value.remoteInfo));
}
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
}).catch(err => {
  console.log(err);
  return;
});
X
xujie 已提交
5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677
tlsServer.on('connect', function(client) {
  client.on('message', callback);
  // 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
  client.off('message', callback);
  client.off('message');
});
```

### on('close')<sup>10+</sup>

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

订阅TLSSocketConnection的关闭事件。使用callback方式作为异步方法。

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
X
xujie 已提交
5700 5701 5702 5703 5704 5705 5706 5707 5708
tlsServer.on('connect', function(client) {
  client.on('close', () => {
    console.log("on close success")
  });
});
```

### off('close')<sup>10+</sup>

5709
off(type: 'close', callback?: Callback<void>): void
X
xujie 已提交
5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737

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

> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let callback = () => {
  console.log("on close success");
}
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
}).catch(err => {
  console.log(err);
  return;
});
X
xujie 已提交
5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794
tlsServer.on('connect', function(client) {
  client.on('close', callback);
  // 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
  client.off('close', callback);
  client.off('close');
});
```

### on('error')<sup>10+</sup>

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options, err => {
  console.log("listen callback error" + err);
  return;
});
X
xujie 已提交
5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854
tlsServer.on('connect', function(client) {
  client.on('error', err => {
    console.log("on error, err:" + JSON.stringify(err))
  });
});
```

### off('error')<sup>10+</sup>

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

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

> **说明:**
> 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息         |
| -------- | ---------------- |
| 401      | Parameter error. |

**示例:**

```js
let callback = err => {
  console.log("on error, err:" + JSON.stringify(err));
}
let tlsServer = socket.constructTLSSocketServerInstance();
X
xujie 已提交
5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
    port: 8080,
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
    password: "xxxx",
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsServer.listen(options).then(() => {
  console.log("listen callback success");
}).catch(err => {
  console.log(err);
  return;
});
X
xujie 已提交
5879 5880 5881 5882 5883 5884 5885 5886
tlsServer.on('connect', function(client) {
  client.on('error', callback);
  // 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。
  client.off('error', callback);
  client.off('error');
});
```