js-apis-socket.md 88.9 KB
Newer Older
S
shawn_he 已提交
1
# # @ohos.net.socket (Socket Connection) 
S
shawn_he 已提交
2

S
shawn_he 已提交
3 4
The **socket** module implements data transfer over TCPSocket, UDPSocket, WebSocket, and TLSSocket connections.

S
shawn_he 已提交
5 6
> **NOTE**
>
S
shawn_he 已提交
7
> The initial APIs of this module are supported since API version 7. Newly added APIs will be marked with a superscript to indicate their earliest API version.
S
shawn_he 已提交
8 9 10

## Modules to Import

S
shawn_he 已提交
11
```js
S
shawn_he 已提交
12 13 14 15 16
import socket from '@ohos.net.socket';
```

## socket.constructUDPSocketInstance

S
shawn_he 已提交
17
constructUDPSocketInstance(): UDPSocket
S
shawn_he 已提交
18 19 20 21 22

Creates a **UDPSocket** object.

**System capability**: SystemCapability.Communication.NetStack

S
shawn_he 已提交
23
**Return value**
S
shawn_he 已提交
24 25

| Type                              | Description                   |
S
shawn_he 已提交
26
| :--------------------------------- | :---------------------- |
S
shawn_he 已提交
27 28 29 30 31
| [UDPSocket](#udpsocket) | **UDPSocket** object.|


**Example**

S
shawn_he 已提交
32
```js
S
shawn_he 已提交
33 34 35 36 37 38 39 40 41 42
let udp = socket.constructUDPSocketInstance();
```


## UDPSocket

Defines a **UDPSocket** connection. Before invoking UDPSocket APIs, you need to call [socket.constructUDPSocketInstance](#socketconstructudpsocketinstance) to create a **UDPSocket** object.

### bind

S
shawn_he 已提交
43
bind(address: NetAddress, callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
44 45 46

Binds the IP address and port number. The port number can be specified or randomly allocated by the system. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
47
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
48 49 50 51 52 53 54 55 56 57

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                              | Mandatory| Description                                                  |
| -------- | ---------------------------------- | ---- | ------------------------------------------------------ |
| address  | [NetAddress](#netaddress) | Yes  | Destination address. For details, see [NetAddress](#netaddress).|
| callback | AsyncCallback\<void\>              | Yes  | Callback used to return the result.                                            |

S
shawn_he 已提交
58 59 60 61 62 63 64
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

S
shawn_he 已提交
65 66
**Example**

S
shawn_he 已提交
67
```js
S
shawn_he 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80
let udp = socket.constructUDPSocketInstance();
udp.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
	console.log('bind fail');
	return;
  }
  console.log('bind success');
})
```


### bind

S
shawn_he 已提交
81
bind(address: NetAddress): Promise\<void\>
S
shawn_he 已提交
82 83 84

Binds the IP address and port number. The port number can be specified or randomly allocated by the system. This API uses a promise to return the result.

S
shawn_he 已提交
85
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
86 87 88 89 90 91 92 93 94

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name | Type                              | Mandatory| Description                                                  |
| ------- | ---------------------------------- | ---- | ------------------------------------------------------ |
| address | [NetAddress](#netaddress) | Yes  | Destination address. For details, see [NetAddress](#netaddress).|

S
shawn_he 已提交
95 96 97 98 99 100
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |
S
shawn_he 已提交
101

S
shawn_he 已提交
102
**Return value**
S
shawn_he 已提交
103 104

| Type           | Description                                      |
S
shawn_he 已提交
105
| :-------------- | :----------------------------------------- |
S
shawn_he 已提交
106 107 108 109
| Promise\<void\> | Promise used to return the result.|

**Example**

S
shawn_he 已提交
110
```js
S
shawn_he 已提交
111 112 113 114 115 116 117 118 119 120 121 122
let udp = socket.constructUDPSocketInstance();
let promise = udp.bind({address: '192.168.xx.xxx', port: 8080, family: 1});
promise .then(() => {
  console.log('bind success');
}).catch(err => {
  console.log('bind fail');
});
```


### send

S
shawn_he 已提交
123
send(options: UDPSendOptions, callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
124 125 126

Sends data over a UDPSocket connection. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
127 128
Before sending data, call [UDPSocket.bind()](#bind) to bind the IP address and port.

S
shawn_he 已提交
129
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
130 131 132 133 134 135 136 137 138 139

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                    | Mandatory| Description                                                        |
| -------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
| options  | [UDPSendOptions](#udpsendoptions) | Yes  | Parameters for sending data over the UDPSocket connection. For details, see [UDPSendOptions](#udpsendoptions).|
| callback | AsyncCallback\<void\>                    | Yes  | Callback used to return the result.                                                  |

S
shawn_he 已提交
140 141 142 143 144 145 146
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

S
shawn_he 已提交
147 148
**Example**

S
shawn_he 已提交
149
```js
S
shawn_he 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
let udp = socket.constructUDPSocketInstance();
udp.send({
  data:'Hello, server!',
  address: {
	address:'192.168.xx.xxx',
	port:xxxx,
	family:1
  }
}, err=> {
	if (err) {
	  console.log('send fail');
	  return;
	}
	console.log('send success');
})
```


### send

S
shawn_he 已提交
170
send(options: UDPSendOptions): Promise\<void\>
S
shawn_he 已提交
171 172 173

Sends data over a UDPSocket connection. This API uses a promise to return the result.

S
shawn_he 已提交
174 175
Before sending data, call [UDPSocket.bind()](#bind) to bind the IP address and port.

S
shawn_he 已提交
176
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
177 178 179 180 181 182 183 184 185

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name | Type                                    | Mandatory| Description                                                        |
| ------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
| options | [UDPSendOptions](#udpsendoptions) | Yes  | Parameters for sending data over the UDPSocket connection. For details, see [UDPSendOptions](#udpsendoptions).|

S
shawn_he 已提交
186 187 188 189 190 191 192
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

S
shawn_he 已提交
193
**Return value**
S
shawn_he 已提交
194 195

| Type           | Description                                          |
S
shawn_he 已提交
196
| :-------------- | :--------------------------------------------- |
S
shawn_he 已提交
197 198 199 200
| Promise\<void\> | Promise used to return the result.|

**Example**

S
shawn_he 已提交
201
```js
S
shawn_he 已提交
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
let udp = socket.constructUDPSocketInstance();
let promise = udp.send({
  data:'Hello, server!',
  address: {
	address:'192.168.xx.xxx',
	port:xxxx,
	family:1
  }
});
promise.then(() => {
  console.log('send success');
}).catch(err => {
  console.log('send fail');
});
```


### close

S
shawn_he 已提交
221
close(callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
222 223 224

Closes a UDPSocket connection. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
225
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
226 227 228 229 230 231 232 233 234 235 236

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                 | Mandatory| Description      |
| -------- | --------------------- | ---- | ---------- |
| callback | AsyncCallback\<void\> | Yes  | Callback used to return the result.|

**Example**

S
shawn_he 已提交
237
```js
S
shawn_he 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250
let udp = socket.constructUDPSocketInstance();
udp.close(err => {
  if (err) {
	console.log('close fail');
	return;
  }
  console.log('close success');
})
```


### close

S
shawn_he 已提交
251
close(): Promise\<void\>
S
shawn_he 已提交
252 253 254

Closes a UDPSocket connection. This API uses a promise to return the result.

S
shawn_he 已提交
255
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
256 257 258

**System capability**: SystemCapability.Communication.NetStack

S
shawn_he 已提交
259
**Return value**
S
shawn_he 已提交
260 261

| Type           | Description                                      |
S
shawn_he 已提交
262
| :-------------- | :----------------------------------------- |
S
shawn_he 已提交
263 264 265 266
| Promise\<void\> | Promise used to return the result.|

**Example**

S
shawn_he 已提交
267
```js
S
shawn_he 已提交
268 269 270 271 272 273 274 275 276 277 278 279
let udp = socket.constructUDPSocketInstance();
let promise = udp.close();
promise.then(() => {
  console.log('close success');
}).catch(err => {
  console.log('close fail');
});
```


### getState

S
shawn_he 已提交
280
getState(callback: AsyncCallback\<SocketStateBase\>): void
S
shawn_he 已提交
281 282 283

Obtains the status of the UDPSocket connection. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
284
>**NOTE**
S
shawn_he 已提交
285
>This API can be called only after **bind** is successfully called.
S
shawn_he 已提交
286

S
shawn_he 已提交
287
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
288 289 290 291 292 293 294 295 296

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                                  | Mandatory| Description      |
| -------- | ------------------------------------------------------ | ---- | ---------- |
| callback | AsyncCallback<[SocketStateBase](#socketstatebase)> | Yes  | Callback used to return the result.|

S
shawn_he 已提交
297 298 299 300 301 302
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 201     | Permission denied.      |

S
shawn_he 已提交
303 304
**Example**

S
shawn_he 已提交
305
```js
S
shawn_he 已提交
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
let udp = socket.constructUDPSocketInstance();
udp.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
	console.log('bind fail');
	return;
  }
  console.log('bind success');
  udp.getState((err, data) => {
	if (err) {
	  console.log('getState fail');
	  return;
	}
	console.log('getState success:' + JSON.stringify(data));
  })
})
```


### getState

S
shawn_he 已提交
326
getState(): Promise\<SocketStateBase\>
S
shawn_he 已提交
327 328 329

Obtains the status of the UDPSocket connection. This API uses a promise to return the result.

S
shawn_he 已提交
330
>**NOTE**
S
shawn_he 已提交
331
>This API can be called only after **bind** is successfully called.
S
shawn_he 已提交
332

S
shawn_he 已提交
333
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
334 335 336

**System capability**: SystemCapability.Communication.NetStack

S
shawn_he 已提交
337
**Return value**
S
shawn_he 已提交
338 339

| Type                                            | Description                                      |
S
shawn_he 已提交
340
| :----------------------------------------------- | :----------------------------------------- |
S
shawn_he 已提交
341
| Promise\<[SocketStateBase](#socketstatebase)\> | Promise used to return the result.|
S
shawn_he 已提交
342 343 344

**Example**

S
shawn_he 已提交
345
```js
S
shawn_he 已提交
346 347 348 349 350 351 352
let udp = socket.constructUDPSocketInstance();
udp.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
	console.log('bind fail');
	return;
  }
  console.log('bind success');
S
shawn_he 已提交
353
  let promise = udp.getState();
S
shawn_he 已提交
354 355 356 357 358 359 360 361 362 363 364
  promise.then(data => {
	console.log('getState success:' + JSON.stringify(data));
  }).catch(err => {
	console.log('getState fail');
  });
})
```


### setExtraOptions

S
shawn_he 已提交
365
setExtraOptions(options: UDPExtraOptions, callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
366

S
shawn_he 已提交
367
Sets other attributes of the UDPSocket connection. This API uses an asynchronous callback to return the result.
S
shawn_he 已提交
368

S
shawn_he 已提交
369
>**NOTE**
S
shawn_he 已提交
370
>This API can be called only after **bind** is successfully called.
S
shawn_he 已提交
371

S
shawn_he 已提交
372
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
373 374 375 376 377 378 379 380 381 382

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                    | Mandatory| Description                                                        |
| -------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
| options  | [UDPExtraOptions](#udpextraoptions) | Yes  | Other properties of the UDPSocket connection. For details, see [UDPExtraOptions](#udpextraoptions).|
| callback | AsyncCallback\<void\>                    | Yes  | Callback used to return the result.                                                  |

S
shawn_he 已提交
383 384 385 386 387 388
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |
S
shawn_he 已提交
389 390 391

**Example**

S
shawn_he 已提交
392
```js
S
shawn_he 已提交
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
let udp = socket.constructUDPSocketInstance();
udp.bind({address:'192.168.xx.xxx', port:xxxx, family:1}, err=> {
  if (err) {
	console.log('bind fail');
	return;
  }
  console.log('bind success');
  udp.setExtraOptions({
	receiveBufferSize:1000,
	sendBufferSize:1000,
	reuseAddress:false,
	socketTimeout:6000,
	broadcast:true
  }, err=> {
	if (err) {
	  console.log('setExtraOptions fail');
	  return;
	}
	console.log('setExtraOptions success');
  })
})
```


### setExtraOptions

S
shawn_he 已提交
419
setExtraOptions(options: UDPExtraOptions): Promise\<void\>
S
shawn_he 已提交
420

S
shawn_he 已提交
421
Sets other attributes of the UDPSocket connection. This API uses a promise to return the result.
S
shawn_he 已提交
422

S
shawn_he 已提交
423
>**NOTE**
S
shawn_he 已提交
424
>This API can be called only after **bind** is successfully called.
S
shawn_he 已提交
425

S
shawn_he 已提交
426
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
427 428 429 430 431 432 433 434 435

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name | Type                                    | Mandatory| Description                                                        |
| ------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
| options | [UDPExtraOptions](#udpextraoptions) | Yes  | Other properties of the UDPSocket connection. For details, see [UDPExtraOptions](#udpextraoptions).|

S
shawn_he 已提交
436
**Return value**
S
shawn_he 已提交
437 438

| Type           | Description                                                |
S
shawn_he 已提交
439
| :-------------- | :--------------------------------------------------- |
S
shawn_he 已提交
440 441
| Promise\<void\> | Promise used to return the result.|

S
shawn_he 已提交
442 443 444 445 446 447 448
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

S
shawn_he 已提交
449 450
**Example**

S
shawn_he 已提交
451
```js
S
shawn_he 已提交
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
let udp = socket.constructUDPSocketInstance();
let promise = udp.bind({address:'192.168.xx.xxx', port:xxxx, family:1});
promise.then(() => {
  console.log('bind success');
  let promise1 = udp.setExtraOptions({
	receiveBufferSize:1000,
	sendBufferSize:1000,
	reuseAddress:false,
	socketTimeout:6000,
	broadcast:true
  });
  promise1.then(() => {
	console.log('setExtraOptions success');
  }).catch(err => {
	console.log('setExtraOptions fail');
  });
}).catch(err => {
  console.log('bind fail');
});
```


S
shawn_he 已提交
474
### on('message')
S
shawn_he 已提交
475

S
shawn_he 已提交
476
on(type: 'message', callback: Callback\<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}\>): void
S
shawn_he 已提交
477 478 479 480 481 482 483 484 485

Enables listening for message receiving events of the UDPSocket connection. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                                        | Mandatory| Description                                     |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
S
shawn_he 已提交
486
| type     | string                                                       | Yes  | Type of the event to subscribe to.<br /> **message**: message receiving event|
S
shawn_he 已提交
487
| callback | Callback\<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo)}\> | Yes  | Callback used to return the result.                               |
S
shawn_he 已提交
488 489 490

**Example**

S
shawn_he 已提交
491
```js
S
shawn_he 已提交
492 493 494 495 496 497 498
let udp = socket.constructUDPSocketInstance();
udp.on('message', value => {
	console.log("on message, message:" + value.message + ", remoteInfo:" + value.remoteInfo);
});
```


S
shawn_he 已提交
499
### off('message')
S
shawn_he 已提交
500

S
shawn_he 已提交
501
off(type: 'message', callback?: Callback\<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}\>): void
S
shawn_he 已提交
502 503 504

Disables listening for message receiving events of the UDPSocket connection. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
505
>**NOTE**
S
shawn_he 已提交
506 507 508 509 510 511 512 513
>You can pass the callback of the **on** function if you want to cancel listening for a certain type of event. If you do not pass the callback, you will cancel listening for all events.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                                        | Mandatory| Description                                     |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
S
shawn_he 已提交
514
| type     | string                                                       | Yes  | Type of the event to subscribe to.<br /> **message**: message receiving event|
S
shawn_he 已提交
515 516 517 518
| callback | Callback<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo)}> | No  | Callback used to return the result.                               |

**Example**

S
shawn_he 已提交
519
```js
S
shawn_he 已提交
520 521 522 523 524
let udp = socket.constructUDPSocketInstance();
let callback = value =>{
	console.log("on message, message:" + value.message + ", remoteInfo:" + value.remoteInfo);
}
udp.on('message', callback);
S
shawn_he 已提交
525
// You can pass the callback of the on method to cancel listening for a certain type of callback. If you do not pass the callback, you will cancel listening for all callbacks.
S
shawn_he 已提交
526 527 528 529 530
udp.off('message', callback);
udp.off('message');
```


S
shawn_he 已提交
531
### on('listening' | 'close')
S
shawn_he 已提交
532

S
shawn_he 已提交
533
on(type: 'listening' | 'close', callback: Callback\<void\>): void
S
shawn_he 已提交
534 535 536 537 538 539 540 541 542

Enables listening for data packet message events or close events of the UDPSocket connection. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type            | Mandatory| Description                                                        |
| -------- | ---------------- | ---- | ------------------------------------------------------------ |
S
shawn_he 已提交
543
| type     | string           | Yes  | Type of the event to subscribe to.<br /><br>- **listening**: data packet message event<br>- **close**: close event|
S
shawn_he 已提交
544 545 546 547
| callback | Callback\<void\> | Yes  | Callback used to return the result.                                                  |

**Example**

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


S
shawn_he 已提交
559
### off('listening' | 'close')
S
shawn_he 已提交
560

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

Disables listening for data packet message events or close events of the UDPSocket connection. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
565
>**NOTE**
S
shawn_he 已提交
566 567 568 569 570 571 572 573
>You can pass the callback of the **on** function if you want to cancel listening for a certain type of event. If you do not pass the callback, you will cancel listening for all events.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type            | Mandatory| Description                                                        |
| -------- | ---------------- | ---- | ------------------------------------------------------------ |
S
shawn_he 已提交
574
| type     | string           | Yes  | Type of the event to subscribe to.<br>- **listening**: data packet message event<br>- **close**: close event|
S
shawn_he 已提交
575 576 577 578
| callback | Callback\<void\> | No  | Callback used to return the result.                                                  |

**Example**

S
shawn_he 已提交
579
```js
S
shawn_he 已提交
580 581 582 583 584
let udp = socket.constructUDPSocketInstance();
let callback1 = () =>{
	console.log("on listening, success");
}
udp.on('listening', callback1);
S
shawn_he 已提交
585
// You can pass the callback of the on method to cancel listening for a certain type of callback. If you do not pass the callback, you will cancel listening for all callbacks.
S
shawn_he 已提交
586 587 588 589 590 591
udp.off('listening', callback1);
udp.off('listening');
let callback2 = () =>{
	console.log("on close, success");
}
udp.on('close', callback2);
S
shawn_he 已提交
592
// You can pass the callback of the on method to cancel listening for a certain type of callback. If you do not pass the callback, you will cancel listening for all callbacks.
S
shawn_he 已提交
593 594 595 596 597
udp.off('close', callback2);
udp.off('close');
```


S
shawn_he 已提交
598
### on('error')
S
shawn_he 已提交
599

S
shawn_he 已提交
600
on(type: 'error', callback: ErrorCallback): void
S
shawn_he 已提交
601 602 603 604 605 606 607 608 609

Enables listening for error events of the UDPSocket connection. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type         | Mandatory| Description                                |
| -------- | ------------- | ---- | ------------------------------------ |
S
shawn_he 已提交
610
| type     | string        | Yes  | Type of the event to subscribe to.<br /> **error**: error event|
S
shawn_he 已提交
611 612 613 614
| callback | ErrorCallback | Yes  | Callback used to return the result.                          |

**Example**

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


S
shawn_he 已提交
623
### off('error')
S
shawn_he 已提交
624

S
shawn_he 已提交
625
off(type: 'error', callback?: ErrorCallback): void
S
shawn_he 已提交
626 627 628

Disables listening for error events of the UDPSocket connection. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
629
>**NOTE**
S
shawn_he 已提交
630 631 632 633 634 635 636 637
>You can pass the callback of the **on** function if you want to cancel listening for a certain type of event. If you do not pass the callback, you will cancel listening for all events.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type         | Mandatory| Description                                |
| -------- | ------------- | ---- | ------------------------------------ |
S
shawn_he 已提交
638
| type     | string        | Yes  | Type of the event to subscribe to.<br /> **error**: error event|
S
shawn_he 已提交
639 640 641 642
| callback | ErrorCallback | No  | Callback used to return the result.                          |

**Example**

S
shawn_he 已提交
643
```js
Z
zengyawen 已提交
644
let udp = socket.constructUDPSocketInstance();
S
shawn_he 已提交
645 646 647 648
let callback = err =>{
	console.log("on error, err:" + JSON.stringify(err));
}
udp.on('error', callback);
S
shawn_he 已提交
649
// You can pass the callback of the on method to cancel listening for a certain type of callback. If you do not pass the callback, you will cancel listening for all callbacks.
S
shawn_he 已提交
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
udp.off('error', callback);
udp.off('error');
```


## NetAddress

Defines the destination address.

**System capability**: SystemCapability.Communication.NetStack

| Name | Type  | Mandatory| Description                                                        |
| ------- | ------ | ---- | ------------------------------------------------------------ |
| address | string | Yes  | Bound IP address.                                          |
| port    | number | No  | Port number. The value ranges from **0** to **65535**. If this parameter is not specified, the system randomly allocates a port.          |
| family  | number | No  | Network protocol type.<br>- **1**: IPv4<br>- **2**: IPv6<br>The default value is **1**.|

## UDPSendOptions

Defines the parameters for sending data over the UDPSocket connection.

**System capability**: SystemCapability.Communication.NetStack

| Name | Type                              | Mandatory| Description          |
| ------- | ---------------------------------- | ---- | -------------- |
S
shawn_he 已提交
675
| data    | string \| ArrayBuffer<sup>7+</sup>                          | Yes  | Data to send.  |
S
shawn_he 已提交
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
| address | [NetAddress](#netaddress) | Yes  | Destination address.|

## UDPExtraOptions

Defines other properties of the UDPSocket connection.

**System capability**: SystemCapability.Communication.NetStack

| Name           | Type   | Mandatory| Description                            |
| ----------------- | ------- | ---- | -------------------------------- |
| broadcast         | boolean | No  | Whether to send broadcast messages. The default value is **false**. |
| receiveBufferSize | number  | No  | Size of the receive buffer, in bytes.  |
| sendBufferSize    | number  | No  | Size of the send buffer, in bytes.  |
| reuseAddress      | boolean | No  | Whether to reuse addresses. The default value is **false**.     |
| socketTimeout     | number  | No  | Timeout duration of the UDPSocket connection, in ms.|

## SocketStateBase

S
shawn_he 已提交
694
Defines the status of the socket connection.
S
shawn_he 已提交
695 696 697 698 699 700 701 702 703 704 705

**System capability**: SystemCapability.Communication.NetStack

| Name     | Type   | Mandatory| Description      |
| ----------- | ------- | ---- | ---------- |
| isBound     | boolean | Yes  | Whether the connection is in the bound state.|
| isClose     | boolean | Yes  | Whether the connection is in the closed state.|
| isConnected | boolean | Yes  | Whether the connection is in the connected state.|

## SocketRemoteInfo

S
shawn_he 已提交
706
Defines information about the socket connection.
S
shawn_he 已提交
707 708 709 710 711 712 713 714 715 716

**System capability**: SystemCapability.Communication.NetStack

| Name | Type  | Mandatory| Description                                                        |
| ------- | ------ | ---- | ------------------------------------------------------------ |
| address | string | Yes  | Bound IP address.                                          |
| family  | string | Yes  | Network protocol type.<br>- IPv4<br>- IPv6<br>The default value is **IPv4**.|
| port    | number | Yes  | Port number. The value ranges from **0** to **65535**.                                       |
| size    | number | Yes  | Length of the server response message, in bytes.                                  |

S
shawn_he 已提交
717 718 719 720 721 722
## Description of UDP Error Codes

The UDP error code mapping is in the format of 2301000 + Linux kernel error code.

For details about error codes, see [Socket Error Codes](../errorcodes/errorcode-net-socket.md).

S
shawn_he 已提交
723 724
## socket.constructTCPSocketInstance

S
shawn_he 已提交
725
constructTCPSocketInstance(): TCPSocket
S
shawn_he 已提交
726 727 728 729 730

Creates a **TCPSocket** object.

**System capability**: SystemCapability.Communication.NetStack

S
shawn_he 已提交
731
**Return value**
S
shawn_he 已提交
732 733

  | Type                              | Description                   |
S
shawn_he 已提交
734
  | :--------------------------------- | :---------------------- |
S
shawn_he 已提交
735 736 737 738
  | [TCPSocket](#tcpsocket) | **TCPSocket** object.|

**Example**

S
shawn_he 已提交
739
```js
S
shawn_he 已提交
740 741 742 743 744 745 746 747 748 749
let tcp = socket.constructTCPSocketInstance();
```


## TCPSocket

Defines a TCPSocket connection. Before invoking TCPSocket APIs, you need to call [socket.constructTCPSocketInstance](#socketconstructtcpsocketinstance) to create a **TCPSocket** object.

### bind

S
shawn_he 已提交
750
bind(address: NetAddress, callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
751 752 753

Binds the IP address and port number. The port number can be specified or randomly allocated by the system. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
754
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
755 756 757 758 759 760 761 762 763 764

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                              | Mandatory| Description                                                  |
| -------- | ---------------------------------- | ---- | ------------------------------------------------------ |
| address  | [NetAddress](#netaddress) | Yes  | Destination address. For details, see [NetAddress](#netaddress).|
| callback | AsyncCallback\<void\>              | Yes  | Callback used to return the result.                                            |

S
shawn_he 已提交
765 766 767 768 769 770
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |
S
shawn_he 已提交
771 772 773

**Example**

S
shawn_he 已提交
774
```js
S
shawn_he 已提交
775 776 777 778 779 780 781 782 783 784 785 786 787
let tcp = socket.constructTCPSocketInstance();
tcp.bind({address: '192.168.xx.xxx', port: xxxx, family: 1}, err => {
  if (err) {
	console.log('bind fail');
	return;
  }
  console.log('bind success');
})
```


### bind

S
shawn_he 已提交
788
bind(address: NetAddress): Promise\<void\>
S
shawn_he 已提交
789 790 791

Binds the IP address and port number. The port number can be specified or randomly allocated by the system. This API uses a promise to return the result.

S
shawn_he 已提交
792
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
793 794 795 796 797 798 799 800 801

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name | Type                              | Mandatory| Description                                                  |
| ------- | ---------------------------------- | ---- | ------------------------------------------------------ |
| address | [NetAddress](#netaddress) | Yes  | Destination address. For details, see [NetAddress](#netaddress).|

S
shawn_he 已提交
802
**Return value**
S
shawn_he 已提交
803 804

| Type           | Description                                                    |
S
shawn_he 已提交
805
| :-------------- | :------------------------------------------------------- |
S
shawn_he 已提交
806 807
| Promise\<void\> | Promise used to return the result.|

S
shawn_he 已提交
808 809 810 811 812 813 814
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

S
shawn_he 已提交
815 816
**Example**

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


### connect

S
shawn_he 已提交
830
connect(options: TCPConnectOptions, callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
831 832 833

Sets up a connection to the specified IP address and port number. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
834 835 836
>**NOTE**
>This API can be called only after **bind** is successfully called.

S
shawn_he 已提交
837
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
838 839 840 841 842 843 844 845 846 847

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                    | Mandatory| Description                                                        |
| -------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
| options  | [TCPConnectOptions](#tcpconnectoptions) | Yes  | TCPSocket connection parameters. For details, see [TCPConnectOptions](#tcpconnectoptions).|
| callback | AsyncCallback\<void\>                    | Yes  | Callback used to return the result.                                                  |

S
shawn_he 已提交
848 849 850 851 852 853 854
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

S
shawn_he 已提交
855 856
**Example**

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


### connect

S
shawn_he 已提交
871
connect(options: TCPConnectOptions): Promise\<void\>
S
shawn_he 已提交
872 873 874

Sets up a connection to the specified IP address and port number. This API uses a promise to return the result.

S
shawn_he 已提交
875
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
876 877 878 879 880 881 882 883 884

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name | Type                                    | Mandatory| Description                                                        |
| ------- | ---------------------------------------- | ---- | ------------------------------------------------------------ |
| options | [TCPConnectOptions](#tcpconnectoptions) | Yes  | TCPSocket connection parameters. For details, see [TCPConnectOptions](#tcpconnectoptions).|

S
shawn_he 已提交
885
**Return value**
S
shawn_he 已提交
886 887

| Type           | Description                                                      |
S
shawn_he 已提交
888
| :-------------- | :--------------------------------------------------------- |
S
shawn_he 已提交
889 890
| Promise\<void\> | Promise used to return the result.|

S
shawn_he 已提交
891 892 893 894 895 896 897
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

S
shawn_he 已提交
898 899
**Example**

S
shawn_he 已提交
900
```js
S
shawn_he 已提交
901 902 903 904 905 906 907 908 909 910 911 912
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise.then(() => {
  console.log('connect success')
}).catch(err => {
  console.log('connect fail');
});
```


### send

S
shawn_he 已提交
913
send(options: TCPSendOptions, callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
914 915 916

Sends data over a TCPSocket connection. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
917
>**NOTE**
S
shawn_he 已提交
918
>This API can be called only after **connect** is successfully called.
S
shawn_he 已提交
919

S
shawn_he 已提交
920
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
921 922 923 924 925 926 927 928 929 930

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                   | Mandatory| Description                                                        |
| -------- | --------------------------------------- | ---- | ------------------------------------------------------------ |
| options  | [TCPSendOptions](#tcpsendoptions) | Yes  | Parameters for sending data over the TCPSocket connection. For details, see [TCPSendOptions](#tcpsendoptions).|
| callback | AsyncCallback\<void\>                   | Yes  | Callback used to return the result.                                                  |

S
shawn_he 已提交
931 932 933 934 935 936 937
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

S
shawn_he 已提交
938 939
**Example**

S
shawn_he 已提交
940
```js
S
shawn_he 已提交
941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise.then(() => {
  console.log('connect success');
  tcp.send({
	data:'Hello, server!'
  },err => {
	if (err) {
	  console.log('send fail');
	  return;
	}
	console.log('send success');
  })
}).catch(err => {
  console.log('connect fail');
});
```


### send

S
shawn_he 已提交
962
send(options: TCPSendOptions): Promise\<void\>
S
shawn_he 已提交
963 964 965

Sends data over a TCPSocket connection. This API uses a promise to return the result.

S
shawn_he 已提交
966
>**NOTE**
S
shawn_he 已提交
967
>This API can be called only after **connect** is successfully called.
S
shawn_he 已提交
968

S
shawn_he 已提交
969
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
970 971 972 973 974 975 976 977 978

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name | Type                                   | Mandatory| Description                                                        |
| ------- | --------------------------------------- | ---- | ------------------------------------------------------------ |
| options | [TCPSendOptions](#tcpsendoptions) | Yes  | Parameters for sending data over the TCPSocket connection. For details, see [TCPSendOptions](#tcpsendoptions).|

S
shawn_he 已提交
979
**Return value**
S
shawn_he 已提交
980 981

| Type           | Description                                              |
S
shawn_he 已提交
982
| :-------------- | :------------------------------------------------- |
S
shawn_he 已提交
983 984
| Promise\<void\> | Promise used to return the result.|

S
shawn_he 已提交
985 986 987 988 989 990 991
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

S
shawn_he 已提交
992 993
**Example**

S
shawn_he 已提交
994
```js
S
shawn_he 已提交
995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
let tcp = socket.constructTCPSocketInstance();
let promise1 = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise1.then(() => {
  console.log('connect success');
  let promise2 = tcp.send({
	data:'Hello, server!'
  });
  promise2.then(() => {
	console.log('send success');
  }).catch(err => {
	console.log('send fail');
  });
}).catch(err => {
  console.log('connect fail');
});
```


### close

S
shawn_he 已提交
1015
close(callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
1016 1017 1018

Closes a TCPSocket connection. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
1019
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
1020 1021 1022 1023 1024 1025 1026 1027 1028

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                 | Mandatory| Description      |
| -------- | --------------------- | ---- | ---------- |
| callback | AsyncCallback\<void\> | Yes  | Callback used to return the result.|

S
shawn_he 已提交
1029 1030 1031 1032 1033
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 201     | Permission denied.      |
S
shawn_he 已提交
1034 1035 1036

**Example**

S
shawn_he 已提交
1037
```js
S
shawn_he 已提交
1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
let tcp = socket.constructTCPSocketInstance();
tcp.close(err => {
  if (err) {
	console.log('close fail');
	return;
  }
  console.log('close success');
})
```


### close

S
shawn_he 已提交
1051
close(): Promise\<void\>
S
shawn_he 已提交
1052 1053 1054

Closes a TCPSocket connection. This API uses a promise to return the result.

S
shawn_he 已提交
1055
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
1056 1057 1058

**System capability**: SystemCapability.Communication.NetStack

S
shawn_he 已提交
1059
**Return value**
S
shawn_he 已提交
1060 1061

| Type           | Description                                      |
S
shawn_he 已提交
1062
| :-------------- | :----------------------------------------- |
S
shawn_he 已提交
1063 1064
| Promise\<void\> | Promise used to return the result.|

S
shawn_he 已提交
1065 1066 1067 1068 1069 1070
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 201     | Permission denied.      |

S
shawn_he 已提交
1071 1072
**Example**

S
shawn_he 已提交
1073
```js
S
shawn_he 已提交
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.close();
promise.then(() => {
  console.log('close success');
}).catch(err => {
  console.log('close fail');
});
```


### getRemoteAddress

S
shawn_he 已提交
1086
getRemoteAddress(callback: AsyncCallback\<NetAddress\>): void
S
shawn_he 已提交
1087

S
shawn_he 已提交
1088
Obtains the remote address of a socket connection. This API uses an asynchronous callback to return the result.
S
shawn_he 已提交
1089

S
shawn_he 已提交
1090
>**NOTE**
S
shawn_he 已提交
1091
>This API can be called only after **connect** is successfully called.
S
shawn_he 已提交
1092

S
shawn_he 已提交
1093
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
1094 1095 1096 1097 1098 1099 1100 1101 1102

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                             | Mandatory| Description      |
| -------- | ------------------------------------------------- | ---- | ---------- |
| callback | AsyncCallback<[NetAddress](#netaddress)> | Yes  | Callback used to return the result.|

S
shawn_he 已提交
1103 1104 1105 1106 1107 1108
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 201     | Permission denied.      |

S
shawn_he 已提交
1109 1110
**Example**

S
shawn_he 已提交
1111
```js
S
shawn_he 已提交
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise.then(() => {
  console.log('connect success');
  tcp.getRemoteAddress((err, data) => {
	if (err) {
	  console.log('getRemoteAddressfail');
	  return;
	}
	console.log('getRemoteAddresssuccess:' + JSON.stringify(data));
  })
}).catch(err => {
  console.log('connect fail');
});
```


### getRemoteAddress

S
shawn_he 已提交
1131
getRemoteAddress(): Promise\<NetAddress\>
S
shawn_he 已提交
1132

S
shawn_he 已提交
1133
Obtains the remote address of a socket connection. This API uses a promise to return the result.
S
shawn_he 已提交
1134

S
shawn_he 已提交
1135
>**NOTE**
S
shawn_he 已提交
1136
>This API can be called only after **connect** is successfully called.
S
shawn_he 已提交
1137

S
shawn_he 已提交
1138
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
1139 1140 1141

**System capability**: SystemCapability.Communication.NetStack

S
shawn_he 已提交
1142
**Return value**
S
shawn_he 已提交
1143 1144

| Type                                       | Description                                       |
S
shawn_he 已提交
1145
| :------------------------------------------ | :------------------------------------------ |
S
shawn_he 已提交
1146 1147
| Promise<[NetAddress](#netaddress)> | Promise used to return the result.|

S
shawn_he 已提交
1148 1149 1150 1151 1152 1153
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 201     | Permission denied.      |

S
shawn_he 已提交
1154 1155
**Example**

S
shawn_he 已提交
1156
```js
S
shawn_he 已提交
1157 1158 1159 1160 1161 1162
let tcp = socket.constructTCPSocketInstance();
let promise1 = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise1.then(() => {
  console.log('connect success');
  let promise2 = tcp.getRemoteAddress();
  promise2.then(() => {
F
fuchao 已提交
1163
	console.log('getRemoteAddress success');
S
shawn_he 已提交
1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174
  }).catch(err => {
	console.log('getRemoteAddressfail');
  });
}).catch(err => {
  console.log('connect fail');
});
```


### getState

S
shawn_he 已提交
1175
getState(callback: AsyncCallback\<SocketStateBase\>): void
S
shawn_he 已提交
1176 1177 1178

Obtains the status of the TCPSocket connection. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
1179
>**NOTE**
S
shawn_he 已提交
1180
>This API can be called only after **bind** or **connect** is successfully called.
S
shawn_he 已提交
1181

S
shawn_he 已提交
1182
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
1183 1184 1185 1186 1187 1188 1189 1190 1191

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                                  | Mandatory| Description      |
| -------- | ------------------------------------------------------ | ---- | ---------- |
| callback | AsyncCallback<[SocketStateBase](#socketstatebase)> | Yes  | Callback used to return the result.|

S
shawn_he 已提交
1192 1193 1194 1195 1196
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 201     | Permission denied.      |
S
shawn_he 已提交
1197 1198 1199

**Example**

S
shawn_he 已提交
1200
```js
S
shawn_he 已提交
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise.then(() => {
  console.log('connect success');
  tcp.getState((err, data) => {
	if (err) {
	  console.log('getState fail');
	  return;
	}
	console.log('getState success:' + JSON.stringify(data));
  });
}).catch(err => {
  console.log('connect fail');
});
```


### getState

S
shawn_he 已提交
1220
getState(): Promise\<SocketStateBase\>
S
shawn_he 已提交
1221 1222 1223

Obtains the status of the TCPSocket connection. This API uses a promise to return the result.

S
shawn_he 已提交
1224
>**NOTE**
S
shawn_he 已提交
1225
>This API can be called only after **bind** or **connect** is successfully called.
S
shawn_he 已提交
1226

S
shawn_he 已提交
1227
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
1228 1229 1230

**System capability**: SystemCapability.Communication.NetStack

S
shawn_he 已提交
1231
**Return value**
S
shawn_he 已提交
1232 1233

| Type                                            | Description                                      |
S
shawn_he 已提交
1234
| :----------------------------------------------- | :----------------------------------------- |
S
shawn_he 已提交
1235 1236
| Promise<[SocketStateBase](#socketstatebase)> | Promise used to return the result.|

S
shawn_he 已提交
1237 1238 1239 1240 1241
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 201     | Permission denied.      |
S
shawn_he 已提交
1242 1243 1244

**Example**

S
shawn_he 已提交
1245
```js
S
shawn_he 已提交
1246 1247 1248 1249 1250 1251
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise.then(() => {
  console.log('connect success');
  let promise1 = tcp.getState();
  promise1.then(() => {
F
fuchao 已提交
1252
	console.log('getState success');
S
shawn_he 已提交
1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
  }).catch(err => {
	console.log('getState fail');
  });
}).catch(err => {
  console.log('connect fail');
});
```


### setExtraOptions

S
shawn_he 已提交
1264
setExtraOptions(options: TCPExtraOptions, callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
1265 1266 1267

Sets other properties of the TCPSocket connection. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
1268
>**NOTE**
S
shawn_he 已提交
1269
>This API can be called only after **bind** or **connect** is successfully called.
S
shawn_he 已提交
1270

S
shawn_he 已提交
1271
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
1272 1273 1274 1275 1276 1277 1278 1279 1280 1281

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                     | Mandatory| Description                                                        |
| -------- | ----------------------------------------- | ---- | ------------------------------------------------------------ |
| options  | [TCPExtraOptions](#tcpextraoptions) | Yes  | Other properties of the TCPSocket connection. For details, see [TCPExtraOptions](#tcpextraoptions).|
| callback | AsyncCallback\<void\>                     | Yes  | Callback used to return the result.                                                  |

S
shawn_he 已提交
1282 1283 1284 1285 1286 1287 1288
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |

S
shawn_he 已提交
1289 1290
**Example**

S
shawn_he 已提交
1291
```js
S
shawn_he 已提交
1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
let tcp = socket.constructTCPSocketInstance();
let promise = tcp.connect({ address: {address: '192.168.xx.xxx', port: xxxx, family: 1} , timeout: 6000});
promise.then(() => {
  console.log('connect success');
  tcp.setExtraOptions({
	keepAlive: true,
	OOBInline: true,
	TCPNoDelay: true,
	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');
  });
}).catch(err => {
  console.log('connect fail');
});
```


### setExtraOptions

S
shawn_he 已提交
1320
setExtraOptions(options: TCPExtraOptions): Promise\<void\>
S
shawn_he 已提交
1321 1322 1323

Sets other properties of the TCPSocket connection. This API uses a promise to return the result.

S
shawn_he 已提交
1324
>**NOTE**
S
shawn_he 已提交
1325
>This API can be called only after **bind** or **connect** is successfully called.
S
shawn_he 已提交
1326

S
shawn_he 已提交
1327
**Required permissions**: ohos.permission.INTERNET
S
shawn_he 已提交
1328 1329 1330 1331 1332 1333 1334 1335 1336

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name | Type                                     | Mandatory| Description                                                        |
| ------- | ----------------------------------------- | ---- | ------------------------------------------------------------ |
| options | [TCPExtraOptions](#tcpextraoptions) | Yes  | Other properties of the TCPSocket connection. For details, see [TCPExtraOptions](#tcpextraoptions).|

S
shawn_he 已提交
1337
**Return value**
S
shawn_he 已提交
1338 1339

| Type           | Description                                                |
S
shawn_he 已提交
1340
| :-------------- | :--------------------------------------------------- |
S
shawn_he 已提交
1341 1342
| Promise\<void\> | Promise used to return the result.|

S
shawn_he 已提交
1343 1344 1345 1346 1347 1348
**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |
S
shawn_he 已提交
1349 1350 1351

**Example**

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


S
shawn_he 已提交
1378
### on('message')
S
shawn_he 已提交
1379

S
shawn_he 已提交
1380
on(type: 'message', callback: Callback<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}\>): void
S
shawn_he 已提交
1381 1382 1383 1384 1385 1386 1387 1388 1389

Enables listening for message receiving events of the TCPSocket connection. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                                        | Mandatory| Description                                     |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
S
shawn_he 已提交
1390
| type     | string                                                       | Yes  | Type of the event to subscribe to.<br /> **message**: message receiving event|
S
shawn_he 已提交
1391 1392 1393 1394
| callback | Callback<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo)}> | Yes  | Callback used to return the result.                               |

**Example**

S
shawn_he 已提交
1395
```js
S
shawn_he 已提交
1396 1397 1398 1399 1400 1401 1402
let tcp = socket.constructTCPSocketInstance();
tcp.on('message', value => {
	console.log("on message, message:" + value.message + ", remoteInfo:" + value.remoteInfo)
});
```


S
shawn_he 已提交
1403
### off('message')
S
shawn_he 已提交
1404

S
shawn_he 已提交
1405
off(type: 'message', callback?: Callback<{message: ArrayBuffer, remoteInfo: SocketRemoteInfo}\>): void
S
shawn_he 已提交
1406 1407 1408

Disables listening for message receiving events of the TCPSocket connection. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
1409
>**NOTE**
S
shawn_he 已提交
1410 1411 1412 1413 1414 1415 1416 1417
>You can pass the callback of the **on** function if you want to cancel listening for a certain type of event. If you do not pass the callback, you will cancel listening for all events.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                                        | Mandatory| Description                                     |
| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------- |
S
shawn_he 已提交
1418
| type     | string                                                       | Yes  | Type of the event to subscribe to.<br /> **message**: message receiving event|
S
shawn_he 已提交
1419 1420 1421 1422
| callback | Callback<{message: ArrayBuffer, remoteInfo: [SocketRemoteInfo](#socketremoteinfo)}> | No  | Callback used to return the result.                               |

**Example**

S
shawn_he 已提交
1423
```js
S
shawn_he 已提交
1424 1425 1426 1427 1428
let tcp = socket.constructTCPSocketInstance();
let callback = value =>{
	console.log("on message, message:" + value.message + ", remoteInfo:" + value.remoteInfo);
}
tcp.on('message', callback);
S
shawn_he 已提交
1429
// You can pass the callback of the on method to cancel listening for a certain type of callback. If you do not pass the callback, you will cancel listening for all callbacks.
S
shawn_he 已提交
1430 1431 1432 1433 1434
tcp.off('message', callback);
tcp.off('message');
```


S
shawn_he 已提交
1435
### on('connect' | 'close')
S
shawn_he 已提交
1436

S
shawn_he 已提交
1437
on(type: 'connect' | 'close', callback: Callback\<void\>): void
S
shawn_he 已提交
1438 1439 1440 1441 1442 1443 1444 1445 1446

Enables listening for connection or close events of the TCPSocket connection. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type            | Mandatory| Description                                                        |
| -------- | ---------------- | ---- | ------------------------------------------------------------ |
S
shawn_he 已提交
1447
| type     | string           | Yes  | Type of the event to subscribe to.<br /><br>- **connect**: connection event<br>- **close**: close event|
S
shawn_he 已提交
1448 1449 1450 1451
| callback | Callback\<void\> | Yes  | Callback used to return the result.                                                  |

**Example**

S
shawn_he 已提交
1452
```js
S
shawn_he 已提交
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462
let tcp = socket.constructTCPSocketInstance();
tcp.on('connect', () => {
	console.log("on connect success")
});
tcp.on('close', data => {
	console.log("on close success")
});
```


S
shawn_he 已提交
1463
### off('connect' | 'close')
S
shawn_he 已提交
1464

S
shawn_he 已提交
1465
off(type: 'connect' | 'close', callback?: Callback\<void\>): void
S
shawn_he 已提交
1466 1467 1468

Disables listening for connection or close events of the TCPSocket connection. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
1469
>**NOTE**
S
shawn_he 已提交
1470 1471 1472 1473 1474 1475 1476 1477
>You can pass the callback of the **on** function if you want to cancel listening for a certain type of event. If you do not pass the callback, you will cancel listening for all events.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type            | Mandatory| Description                                                        |
| -------- | ---------------- | ---- | ------------------------------------------------------------ |
S
shawn_he 已提交
1478
| type     | string           | Yes  | Type of the event to subscribe to.<br /><br>- **connect**: connection event<br>- **close**: close event|
S
shawn_he 已提交
1479 1480 1481 1482
| callback | Callback\<void\> | No  | Callback used to return the result.                                                  |

**Example**

S
shawn_he 已提交
1483
```js
S
shawn_he 已提交
1484 1485 1486 1487 1488
let tcp = socket.constructTCPSocketInstance();
let callback1 = () =>{
	console.log("on connect success");
}
tcp.on('connect', callback1);
S
shawn_he 已提交
1489
// You can pass the callback of the on method to cancel listening for a certain type of callback. If you do not pass the callback, you will cancel listening for all callbacks.
S
shawn_he 已提交
1490 1491 1492 1493 1494 1495
tcp.off('connect', callback1);
tcp.off('connect');
let callback2 = () =>{
	console.log("on close success");
}
tcp.on('close', callback2);
S
shawn_he 已提交
1496
// You can pass the callback of the on method to cancel listening for a certain type of callback. If you do not pass the callback, you will cancel listening for all callbacks.
S
shawn_he 已提交
1497 1498 1499 1500 1501
tcp.off('close', callback2);
tcp.off('close');
```


S
shawn_he 已提交
1502
### on('error')
S
shawn_he 已提交
1503

S
shawn_he 已提交
1504
on(type: 'error', callback: ErrorCallback): void
S
shawn_he 已提交
1505 1506 1507 1508 1509 1510 1511 1512 1513

Enables listening for error events of the TCPSocket connection. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type         | Mandatory| Description                                |
| -------- | ------------- | ---- | ------------------------------------ |
S
shawn_he 已提交
1514
| type     | string        | Yes  | Type of the event to subscribe to.<br /> **error**: error event|
S
shawn_he 已提交
1515 1516 1517 1518
| callback | ErrorCallback | Yes  | Callback used to return the result.                          |

**Example**

S
shawn_he 已提交
1519
```js
S
shawn_he 已提交
1520 1521 1522 1523 1524 1525 1526
let tcp = socket.constructTCPSocketInstance();
tcp.on('error', err => {
	console.log("on error, err:" + JSON.stringify(err))
});
```


S
shawn_he 已提交
1527
### off('error')
S
shawn_he 已提交
1528

S
shawn_he 已提交
1529
off(type: 'error', callback?: ErrorCallback): void
S
shawn_he 已提交
1530 1531 1532

Disables listening for error events of the TCPSocket connection. This API uses an asynchronous callback to return the result.

S
shawn_he 已提交
1533
>**NOTE**
S
shawn_he 已提交
1534 1535 1536 1537 1538 1539 1540 1541
>You can pass the callback of the **on** function if you want to cancel listening for a certain type of event. If you do not pass the callback, you will cancel listening for all events.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type         | Mandatory| Description                                |
| -------- | ------------- | ---- | ------------------------------------ |
S
shawn_he 已提交
1542
| type     | string        | Yes  | Type of the event to subscribe to.<br /> **error**: error event|
S
shawn_he 已提交
1543 1544 1545 1546
| callback | ErrorCallback | No  | Callback used to return the result.                          |

**Example**

S
shawn_he 已提交
1547
```js
S
shawn_he 已提交
1548 1549 1550 1551 1552
let tcp = socket.constructTCPSocketInstance();
let callback = err =>{
	console.log("on error, err:" + JSON.stringify(err));
}
tcp.on('error', callback);
S
shawn_he 已提交
1553
// You can pass the callback of the on method to cancel listening for a certain type of callback. If you do not pass the callback, you will cancel listening for all callbacks.
S
shawn_he 已提交
1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577
tcp.off('error', callback);
tcp.off('error');
```


## TCPConnectOptions

Defines TCPSocket connection parameters.

**System capability**: SystemCapability.Communication.NetStack

| Name | Type                              | Mandatory| Description                      |
| ------- | ---------------------------------- | ---- | -------------------------- |
| address | [NetAddress](#netaddress) | Yes  | Bound IP address and port number.      |
| timeout | number                             | No  | Timeout duration of the TCPSocket connection, in ms.|

## TCPSendOptions

Defines the parameters for sending data over the TCPSocket connection.

**System capability**: SystemCapability.Communication.NetStack

| Name  | Type  | Mandatory| Description                                                        |
| -------- | ------ | ---- | ------------------------------------------------------------ |
S
shawn_he 已提交
1578
| data     | string\| ArrayBuffer<sup>7+</sup>  | Yes  | Data to send.                                                |
S
shawn_he 已提交
1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595
| encoding | string | No  | Character encoding format. The options are as follows: **UTF-8**, **UTF-16BE**, **UTF-16LE**, **UTF-16**, **US-AECII**, and **ISO-8859-1**. The default value is **UTF-8**.|

## TCPExtraOptions

Defines other properties of the TCPSocket connection.

**System capability**: SystemCapability.Communication.NetStack

| Name           | Type   | Mandatory| Description                                                        |
| ----------------- | ------- | ---- | ------------------------------------------------------------ |
| keepAlive         | boolean | No  | Whether to keep the connection alive. The default value is **false**.                                 |
| OOBInline         | boolean | No  | Whether to enable OOBInline. The default value is **false**.                                |
| TCPNoDelay        | boolean | No  | Whether to enable no-delay on the TCPSocket connection. The default value is **false**.                      |
| socketLinger      | Object  | Yes  | Socket linger.<br>- **on**: whether to enable socket linger. The value true means to enable socket linger and false means the opposite.<br>- **linger**: linger time, in ms. The value ranges from **0** to **65535**.<br>Specify this parameter only when **on** is set to **true**.|
| receiveBufferSize | number  | No  | Size of the receive buffer, in bytes.                              |
| sendBufferSize    | number  | No  | Size of the send buffer, in bytes.                              |
| reuseAddress      | boolean | No  | Whether to reuse addresses. The default value is **false**.                                 |
S
shawn_he 已提交
1596 1597 1598 1599 1600 1601 1602
| socketTimeout     | number  | No  | Timeout duration of the UDPSocket connection, in ms.                            |

## Description of TCP Error Codes

The TCP error code mapping is in the format of 2301000 + Linux kernel error code.

For details about error codes, see [Socket Error Codes](../errorcodes/errorcode-net-socket.md).
S
shawn_he 已提交
1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614

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

constructTLSSocketInstance(): TLSSocket

Creates a **TLSSocket** object.

**System capability**: SystemCapability.Communication.NetStack

**Return value**

| Type                              | Description                   |
S
shawn_he 已提交
1615
| :--------------------------------- | :---------------------- |
S
shawn_he 已提交
1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629
| [TLSSocket](#tlssocket9) | **TLSSocket** object.|

**Example**

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

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

Defines a TLSSocket connection. Before invoking TLSSocket APIs, you need to call [socket.constructTLSSocketInstance](#socketconstructtlssocketinstance9) to create a **TLSSocket** object.

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

S
shawn_he 已提交
1630
bind(address: NetAddress, callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667

Binds the IP address and port number. This API uses an asynchronous callback to return the result.

**Required permissions**: ohos.permission.INTERNET

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                              | Mandatory| Description                                                  |
| -------- | ---------------------------------- | ---- | ------------------------------------------------------ |
| address  | [NetAddress](#netaddress) | Yes  | Destination address. For details, see [NetAddress](#netaddress).|
| callback | AsyncCallback\<void\>              | Yes  | Callback used to return the result. If the operation is successful, the result of binding the local IP address and port number is returned. If the operation fails, an error message is returned.|

**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |
| 2303198 | Address already in use. |
| 2300002 | System internal error.  |

**Example**

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

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

S
shawn_he 已提交
1668
bind(address: NetAddress): Promise\<void\>
S
shawn_he 已提交
1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684

Binds the IP address and port number. This API uses a promise to return the result.

**Required permissions**: ohos.permission.INTERNET

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name | Type                              | Mandatory| Description                                                  |
| ------- | ---------------------------------- | ---- | ------------------------------------------------------ |
| address | [NetAddress](#netaddress)          | Yes  | Destination address. For details, see [NetAddress](#netaddress).|

**Return value**

| Type           | Description                                                    |
S
shawn_he 已提交
1685
| :-------------- | :------------------------------------------------------- |
S
shawn_he 已提交
1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709
| Promise\<void\> | Promise used to return the result. If the operation fails, an error message is returned.|

**Error codes**

| ID| Error Message                |
| ------- | ----------------------- |
| 401     | Parameter error.        |
| 201     | Permission denied.      |
| 2303198 | Address already in use. |
| 2300002 | System internal error.  |

**Example**

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

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

S
shawn_he 已提交
1710
getState(callback: AsyncCallback\<SocketStateBase\>): void
S
shawn_he 已提交
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 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749

Obtains the status of the TLSSocket connection. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                                  | Mandatory| Description      |
| -------- | ------------------------------------------------------ | ---- | ---------- |
| callback | AsyncCallback\<[SocketStateBase](#socketstatebase)> | Yes  | Callback used to return the result. If the operation is successful, the status of the TLSSocket connection is returned. If the operation fails, an error message is returned.|

**Error codes**

| ID| Error Message                       |
| ------- | ------------------------------ |
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**Example**

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

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

S
shawn_he 已提交
1750
getState(): Promise\<SocketStateBase\>
S
shawn_he 已提交
1751 1752 1753 1754 1755 1756 1757 1758

Obtains the status of the TLSSocket connection. This API uses a promise to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Return value**

| Type                                            | Description                                      |
S
shawn_he 已提交
1759
| :----------------------------------------------- | :----------------------------------------- |
S
shawn_he 已提交
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
| Promise\<[SocketStateBase](#socketstatebase)> | Promise used to return the result. If the operation fails, an error message is returned.|

**Error codes**

| ID| Error Message                       |
| ------- | ------------------------------ |
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**Example**

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

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

S
shawn_he 已提交
1789
setExtraOptions(options: TCPExtraOptions, callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840

Sets other properties of the TCPSocket connection after successful binding of the local IP address and port number of the TLSSocket connection. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                     | Mandatory| Description                                                        |
| -------- | ----------------------------------------- | ---- | ------------------------------------------------------------ |
| options  | [TCPExtraOptions](#tcpextraoptions) | Yes  | Other properties of the TCPSocket connection. For details, see [TCPExtraOptions](#tcpextraoptions).|
| callback | AsyncCallback\<void\>                     | Yes  | Callback used to return the result. If the operation is successful, the result of setting other properties of the TCPSocket connection is returned. If the operation fails, an error message is returned.|

**Error codes**

| ID| Error Message                       |
| ------- | -----------------------------  |
| 401     | Parameter error.               |
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**Example**

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

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

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

S
shawn_he 已提交
1841
setExtraOptions(options: TCPExtraOptions): Promise\<void\>
S
shawn_he 已提交
1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855

Sets other properties of the TCPSocket connection after successful binding of the local IP address and port number of the TLSSocket connection. This API uses a promise to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name | Type                                     | Mandatory| Description                                                        |
| ------- | ----------------------------------------- | ---- | ------------------------------------------------------------ |
| options | [TCPExtraOptions](#tcpextraoptions) | Yes  | Other properties of the TCPSocket connection. For details, see [TCPExtraOptions](#tcpextraoptions).|

**Return value**

| Type           | Description                                                |
S
shawn_he 已提交
1856
| :-------------- | :--------------------------------------------------- |
S
shawn_he 已提交
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 1892 1893 1894 1895
| Promise\<void\> | Promise used to return the result. If the operation fails, an error message is returned.|

**Error codes**

| ID| Error Message                       |
| ------- | ------------------------------ |
| 401     | Parameter error.               |
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**Example**

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

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

S
shawn_he 已提交
1896
connect(options: TLSConnectOptions, callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
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

Sets up a TLSSocket connection, and creates and initializes a TLS session after successful binding of the local IP address and port number of the TLSSocket connection. During this process, a TLS/SSL handshake is performed between the application and the server to implement data transmission. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                  | Mandatory| Description|
| -------- | ---------------------------------------| ----| --------------- |
| options  | [TLSConnectOptions](#tlsconnectoptions9) | Yes  | Parameters required for the TLSSocket connection.|
| callback | AsyncCallback\<void>                  | Yes  | Callback used to return the result. If the operation is successful, no value is returned. If the operation fails, an error message is returned.|

**Error codes**

| ID| Error Message                                     |
| ------- | -------------------------------------------- |
| 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.                       |

**Example**

```js
let tlsTwoWay = socket.constructTLSSocketInstance(); // Two way authentication
S
shawn_he 已提交
1933
tlsTwoWay.bind({address: '192.168.xxx.xxx', port: 8080, family: 1}, err => {
S
shawn_he 已提交
1934 1935 1936 1937 1938 1939 1940 1941 1942 1943
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "192.168.xx.xxx",
S
shawn_he 已提交
1944
    port: 8080,
S
shawn_he 已提交
1945 1946 1947 1948 1949 1950
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
S
shawn_he 已提交
1951
    password: "xxxx",
S
shawn_he 已提交
1952 1953 1954 1955 1956 1957 1958
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsTwoWay.connect(options, (err, data) => {
S
shawn_he 已提交
1959 1960
  console.error("connect callback error"+err);
  console.log(JSON.stringify(data));
S
shawn_he 已提交
1961 1962 1963
});

let tlsOneWay = socket.constructTLSSocketInstance(); // One way authentication
S
shawn_he 已提交
1964
  tlsOneWay.bind({address: '192.168.xxx.xxx', port: 8080, family: 1}, err => {
S
shawn_he 已提交
1965 1966 1967 1968 1969 1970 1971 1972 1973
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});
let oneWayOptions = {
  address: {
    address: "192.168.xxx.xxx",
S
shawn_he 已提交
1974
    port: 8080,
S
shawn_he 已提交
1975 1976 1977 1978 1979 1980 1981 1982
    family: 1,
  },
  secureOptions: {
    ca: ["xxxx","xxxx"],
    cipherSuite: "AES256-SHA256",
  },
};
tlsOneWay.connect(oneWayOptions, (err, data) => {
S
shawn_he 已提交
1983 1984
  console.error("connect callback error"+err);
  console.log(JSON.stringify(data));
S
shawn_he 已提交
1985 1986 1987 1988 1989
});
```

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

S
shawn_he 已提交
1990
connect(options: TLSConnectOptions): Promise\<void\>
S
shawn_he 已提交
1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005

Sets up a TLSSocket connection, and creates and initializes a TLS session after successful binding of the local IP address and port number of the TLSSocket connection. During this process, a TLS/SSL handshake is performed between the application and the server to implement data transmission. Both two-way and one-way authentication modes are supported. This API uses a promise to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                  | Mandatory| Description|
| -------- | --------------------------------------| ----| --------------- |
| options  | [TLSConnectOptions](#tlsconnectoptions9) | Yes  | Parameters required for the connection.|

**Return value**

| Type                                       | Description                         |
| ------------------------------------------- | ----------------------------- |
S
shawn_he 已提交
2006
| Promise\<void\>                              | Promise used to return the result. If the operation is successful, no value is returned. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031

**Error codes**

| ID| Error Message                                     |
| ------- | -------------------------------------------- |
| 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.                       |

**Example**

```js
let tlsTwoWay = socket.constructTLSSocketInstance(); // Two way authentication
S
shawn_he 已提交
2032
tlsTwoWay.bind({address: '192.168.xxx.xxx', port: 8080, family: 1}, err => {
S
shawn_he 已提交
2033 2034 2035 2036 2037 2038 2039 2040 2041 2042
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],
  address: {
    address: "xxxx",
S
shawn_he 已提交
2043
    port: 8080,
S
shawn_he 已提交
2044 2045 2046 2047 2048 2049
    family: 1,
  },
  secureOptions: {
    key: "xxxx",
    cert: "xxxx",
    ca: ["xxxx"],
S
shawn_he 已提交
2050
    password: "xxxx",
S
shawn_he 已提交
2051 2052 2053 2054 2055 2056 2057
    protocols: [socket.Protocol.TLSv12],
    useRemoteCipherPrefer: true,
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",
    cipherSuite: "AES256-SHA256",
  },
};
tlsTwoWay.connect(options).then(data => {
S
shawn_he 已提交
2058
  console.log(JSON.stringify(data));
S
shawn_he 已提交
2059 2060 2061 2062 2063
}).catch(err => {
  console.error(err);
});

let tlsOneWay = socket.constructTLSSocketInstance(); // One way authentication
S
shawn_he 已提交
2064
tlsOneWay.bind({address: '192.168.xxx.xxx', port: 8080, family: 1}, err => {
S
shawn_he 已提交
2065 2066 2067 2068 2069 2070 2071 2072 2073
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});
let oneWayOptions = {
  address: {
    address: "192.168.xxx.xxx",
S
shawn_he 已提交
2074
    port: 8080,
S
shawn_he 已提交
2075 2076 2077 2078 2079 2080 2081 2082
    family: 1,
  },
  secureOptions: {
    ca: ["xxxx","xxxx"],
    cipherSuite: "AES256-SHA256",
  },
};
tlsOneWay.connect(oneWayOptions).then(data => {
S
shawn_he 已提交
2083
  console.log(JSON.stringify(data));
S
shawn_he 已提交
2084 2085 2086 2087 2088 2089 2090
}).catch(err => {
  console.error(err);
});
```

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

S
shawn_he 已提交
2091
getRemoteAddress(callback: AsyncCallback\<NetAddress\>): void
S
shawn_he 已提交
2092 2093 2094 2095 2096 2097 2098 2099 2100

Obtains the remote address of a TLSSocket connection. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                             | Mandatory| Description      |
| -------- | ------------------------------------------------- | ---- | ---------- |
S
shawn_he 已提交
2101
| callback | AsyncCallback\<[NetAddress](#netaddress)\> | Yes  | Callback used to return the result. If the operation is successful, the remote address is returned. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123

**Error codes**

| ID| Error Message                       |
| ------- | -----------------------------  |
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**Example**

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

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

S
shawn_he 已提交
2124
getRemoteAddress(): Promise\<NetAddress\>
S
shawn_he 已提交
2125 2126 2127 2128 2129 2130 2131 2132

Obtains the remote address of a TLSSocket connection. This API uses a promise to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Return value**

| Type                                       | Description                                       |
S
shawn_he 已提交
2133
| :------------------------------------------ | :------------------------------------------ |
S
shawn_he 已提交
2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155
| Promise\<[NetAddress](#netaddress)> | Promise used to return the result. If the operation fails, an error message is returned.|

**Error codes**

| ID| Error Message                       |
| ------- | ------------------------------ |
| 2303188 | Socket operation on non-socket.|
| 2300002 | System internal error.         |

**Example**

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

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

S
shawn_he 已提交
2156
getCertificate(callback: AsyncCallback\<[X509CertRawData](#x509certrawdata9)\>): void
S
shawn_he 已提交
2157 2158 2159 2160 2161 2162 2163 2164 2165

Obtains the local digital certificate after a TLSSocket connection is established. This API is applicable to two-way authentication. It uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                  | Mandatory| Description|
| -------- | ----------------------------------------| ---- | ---------------|
S
shawn_he 已提交
2166
| callback | AsyncCallback\<[X509CertRawData](#x509certrawdata9)\>    | Yes  | Callback used to return the result. If the operation is successful, the local certificate is returned. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189

**Error codes**

| ID| Error Message                       |
| ------- | ------------------------------ |
| 2303501 | SSL is null.                   |
| 2303504 | Error looking up x509.         |
| 2300002 | System internal error.         |

**Example**

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

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

S
shawn_he 已提交
2190
getCertificate():Promise\<[X509CertRawData](#x509certrawdata9)\>
S
shawn_he 已提交
2191 2192 2193 2194 2195 2196 2197

Obtains the local digital certificate after a TLSSocket connection is established. This API is applicable to two-way authentication. It uses a promise to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Return value**

S
shawn_he 已提交
2198
| Type           | Description                 |
S
shawn_he 已提交
2199
| -------------- | -------------------- |
S
shawn_he 已提交
2200
| Promise\<[X509CertRawData](#x509certrawdata9)\> | Promise used to return the result. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221

**Error codes**

| ID| Error Message                       |
| ------- | ------------------------------ |
| 2303501 | SSL is null.                   |
| 2303504 | Error looking up x509.         |
| 2300002 | System internal error.         |

**Example**

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

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

S
shawn_he 已提交
2222
getRemoteCertificate(callback: AsyncCallback\<[X509CertRawData](#x509certrawdata9)\>): void
S
shawn_he 已提交
2223 2224 2225 2226 2227 2228 2229 2230 2231

Obtains the digital certificate of the server after a TLSSocket connection is established. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name   | Type                                   | Mandatory | Description          |
| -------- | ----------------------------------------| ---- | ---------------|
S
shawn_he 已提交
2232
| callback | AsyncCallback\<[X509CertRawData](#x509certrawdata9)\>  | Yes  | Callback used to return the result. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254

**Error codes**

| ID| Error Message                       |
| ------- | ------------------------------ |
| 2303501 | SSL is null.                   |
| 2300002 | System internal error.         |

**Example**

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

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

S
shawn_he 已提交
2255
getRemoteCertificate():Promise\<[X509CertRawData](#x509certrawdata9)\>
S
shawn_he 已提交
2256 2257 2258 2259 2260 2261 2262 2263 2264

Obtains the digital certificate of the server after a TLSSocket connection is established. This API uses a promise to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Return value**

| Type           | Description                 |
| -------------- | -------------------- |
S
shawn_he 已提交
2265
| Promise\<[X509CertRawData](#x509certrawdata9)\> | Promise used to return the result. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285

**Error codes**

| ID| Error Message                       |
| ------- | ------------------------------ |
| 2303501 | SSL is null.                   |
| 2300002 | System internal error.         |

**Example**

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

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

S
shawn_he 已提交
2286
getProtocol(callback: AsyncCallback\<string\>): void
S
shawn_he 已提交
2287 2288 2289 2290 2291 2292 2293 2294 2295

Obtains the communication protocol version after a TLSSocket connection is established. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                      | Mandatory| Description          |
| -------- | ----------------------------------------| ---- | ---------------|
S
shawn_he 已提交
2296
| callback | AsyncCallback\<string\>                  | Yes  | Callback used to return the result. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319

**Error codes**

| ID| Error Message                       |
| ------- | -----------------------------  |
| 2303501 | SSL is null.                   |
| 2303505 | Error occurred in the tls system call. |
| 2300002 | System internal error.         |

**Example**

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

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

S
shawn_he 已提交
2320
getProtocol():Promise\<string\>
S
shawn_he 已提交
2321 2322 2323 2324 2325 2326 2327 2328 2329

Obtains the communication protocol version after a TLSSocket connection is established. This API uses a promise to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Return value**

| Type           | Description                 |
| -------------- | -------------------- |
S
shawn_he 已提交
2330
| Promise\<string\> | Promise used to return the result. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351

**Error codes**

| ID| Error Message                       |
| ------- | ------------------------------ |
| 2303501 | SSL is null.                   |
| 2303505 | Error occurred in the tls system call. |
| 2300002 | System internal error.         |

**Example**

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

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

S
shawn_he 已提交
2352
getCipherSuite(callback: AsyncCallback\<Array\<string\>\>): void
S
shawn_he 已提交
2353 2354 2355 2356 2357 2358 2359 2360 2361

Obtains the cipher suite negotiated by both communication parties after a TLSSocket connection is established. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                    | Mandatory| Description|
| -------- | ----------------------------------------| ---- | ---------------|
S
shawn_he 已提交
2362
| callback | AsyncCallback\<Array\<string\>\>          | Yes  | Callback used to return the result. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386

**Error codes**

| ID| Error Message                       |
| ------- | ------------------------------ |
| 2303501 | SSL is null.                   |
| 2303502 | Error in tls reading.          |
| 2303505 | Error occurred in the tls system call. |
| 2300002 | System internal error.         |

**Example**

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

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

S
shawn_he 已提交
2387
getCipherSuite(): Promise\<Array\<string\>\>
S
shawn_he 已提交
2388 2389 2390 2391 2392 2393 2394 2395 2396

Obtains the cipher suite negotiated by both communication parties after a TLSSocket connection is established. This API uses a promise to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Return value**

| Type                   | Description                 |
| ---------------------- | --------------------- |
S
shawn_he 已提交
2397
| Promise\<Array\<string\>\> | Promise used to return the result. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411

**Error codes**

| ID| Error Message                       |
| ------- | ------------------------------ |
| 2303501 | SSL is null.                   |
| 2303502 | Error in tls reading.          |
| 2303505 | Error occurred in the tls system call. |
| 2300002 | System internal error.         |

**Example**

```js
tls.getCipherSuite().then(data => {
S
shawn_he 已提交
2412
  console.log('getCipherSuite success:' + JSON.stringify(data));
S
shawn_he 已提交
2413 2414 2415 2416 2417 2418 2419
}).catch(err => {
  console.error(err);
});
```

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

S
shawn_he 已提交
2420
getSignatureAlgorithms(callback: AsyncCallback\<Array\<string\>\>): void
S
shawn_he 已提交
2421 2422 2423 2424 2425 2426 2427 2428 2429

Obtains the signing algorithm negotiated by both communication parties after a TLSSocket connection is established. This API is applicable to two-way authentication. It uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name  | Type                                  | Mandatory| Description           |
| -------- | -------------------------------------| ---- | ---------------|
S
shawn_he 已提交
2430
| callback | AsyncCallback\<Array\<string\>\>         | Yes  | Callback used to return the result.  |
S
shawn_he 已提交
2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452

**Error codes**

| ID| Error Message                       |
| ------- | ------------------------------ |
| 2303501 | SSL is null.                   |
| 2300002 | System internal error.         |

**Example**

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

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

S
shawn_he 已提交
2453
getSignatureAlgorithms(): Promise\<Array\<string\>\>
S
shawn_he 已提交
2454 2455 2456 2457 2458 2459 2460 2461 2462

Obtains the signing algorithm negotiated by both communication parties after a TLSSocket connection is established. This API is applicable to two-way authentication. It uses a promise to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Return value**

| Type                   | Description                 |
| ---------------------- | -------------------- |
S
shawn_he 已提交
2463
| Promise\<Array\<string\>\> | Promise used to return the result.|
S
shawn_he 已提交
2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475

**Error codes**

| ID| Error Message                       |
| ------- | ------------------------------ |
| 2303501 | SSL is null.                   |
| 2300002 | System internal error.         |

**Example**

```js
tls.getSignatureAlgorithms().then(data => {
S
shawn_he 已提交
2476
  console.log("getSignatureAlgorithms success" + data);
S
shawn_he 已提交
2477 2478 2479 2480 2481 2482 2483
}).catch(err => {
  console.error(err);
});
```

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

S
shawn_he 已提交
2484
send(data: string, callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
2485 2486 2487 2488 2489 2490 2491 2492 2493 2494

Sends a message to the server after a TLSSocket connection is established. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name   | Type                         | Mandatory| Description           |
| -------- | -----------------------------| ---- | ---------------|
|   data   | string                       | Yes  | Data content of the message to send.  |
S
shawn_he 已提交
2495
| callback | AsyncCallback\<void\>         | Yes  | Callback used to return the result. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521

**Error codes**

| ID| Error Message                                     |
| ------- | -------------------------------------------- |
| 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.                       |

**Example**

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

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

S
shawn_he 已提交
2522
send(data: string): Promise\<void\>
S
shawn_he 已提交
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

Sends a message to the server after a TLSSocket connection is established. This API uses a promise to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name   | Type                         | Mandatory| Description           |
| -------- | -----------------------------| ---- | ---------------|
|   data   | string                       | Yes  | Data content of the message to send.  |

**Error codes**

| ID| Error Message                                     |
| ------- | -------------------------------------------- |
| 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.                       |

**Return value**

| Type          | Description                 |
| -------------- | -------------------- |
S
shawn_he 已提交
2549
| Promise\<void\> | Promise used to return the result. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562

**Example**

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

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

S
shawn_he 已提交
2563
close(callback: AsyncCallback\<void\>): void
S
shawn_he 已提交
2564 2565 2566 2567 2568 2569 2570 2571 2572

Closes a TLSSocket connection. This API uses an asynchronous callback to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Parameters**

| Name   | Type                         | Mandatory| Description           |
| -------- | -----------------------------| ---- | ---------------|
S
shawn_he 已提交
2573
| callback | AsyncCallback\<void\>         | Yes  | Callback used to return the result. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597

**Error codes**

| ID| Error Message                                     |
| ------- | -------------------------------------------- |
| 2303501 | SSL is null.                                 |
| 2303505 | Error occurred in the tls system call.       |
| 2303506 | Error clearing tls connection.               |
| 2300002 | System internal error.                       |

**Example**

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

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

S
shawn_he 已提交
2598
close(): Promise\<void\>
S
shawn_he 已提交
2599 2600 2601 2602 2603 2604 2605 2606 2607

Closes a TLSSocket connection. This API uses a promise to return the result.

**System capability**: SystemCapability.Communication.NetStack

**Return value**

| Type          | Description                 |
| -------------- | -------------------- |
S
shawn_he 已提交
2608
| Promise\<void\> | Promise used to return the result. If the operation fails, an error message is returned.|
S
shawn_he 已提交
2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638

**Error codes**

| ID| Error Message                                     |
| ------- | -------------------------------------------- |
| 2303501 | SSL is null.                                 |
| 2303505 | Error occurred in the tls system call.       |
| 2303506 | Error clearing tls connection.               |
| 2300002 | System internal error.                       |

**Example**

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

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

Defines TLS connection options.

**System capability**: SystemCapability.Communication.NetStack

| Name         | Type                                    | Mandatory| Description           |
| -------------- | ------------------------------------- | ---  |-------------- |
| address        | [NetAddress](#netaddress)             | Yes |  Gateway address.      |
| secureOptions  | [TLSSecureOptions](#tlssecureoptions9) | Yes| TLS security options.|
S
shawn_he 已提交
2639
| ALPNProtocols  | Array\<string\>                         | No| Application Layer Protocol Negotiation (ALPN) protocols.     |
S
shawn_he 已提交
2640 2641 2642 2643 2644 2645 2646 2647 2648

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

Defines TLS security options. The CA certificate is mandatory, and other parameters are optional. When **cert** (local certificate) and **key** (private key) are not empty, the two-way authentication mode is enabled. If **cert** or **key** is empty, one-way authentication is enabled.

**System capability**: SystemCapability.Communication.NetStack

| Name                | Type                                                   | Mandatory| Description                               |
| --------------------- | ------------------------------------------------------ | --- |----------------------------------- |
S
shawn_he 已提交
2649
| ca                    | string \| Array\<string\>                               | Yes| CA certificate of the server, which is used to authenticate the digital certificate of the server.|
S
shawn_he 已提交
2650 2651
| cert                  | string                                                  | No| Digital certificate of the local client.                |
| key                   | string                                                  | No| Private key of the local digital certificate.                  |
S
shawn_he 已提交
2652
| password                | string                                                  | No| Password for reading the private key.                     |
S
shawn_he 已提交
2653
| protocols             | [Protocol](#protocol9) \|Array\<[Protocol](#protocol9)\> | No| TLS protocol version.                 |
S
shawn_he 已提交
2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676
| useRemoteCipherPrefer | boolean                                                 | No| Whether to use the remote cipher suite preferentially.         |
| signatureAlgorithms   | string                                                 | No| Signing algorithm used during communication.              |
| cipherSuite           | string                                                 | No| Cipher suite used during communication.              |

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

Enumerates TLS protocol versions.

**System capability**: SystemCapability.Communication.NetStack

| Name     |    Value   | Description               |
| --------- | --------- |------------------ |
| TLSv12    | "TLSv1.2" | TLSv1.2.|
| TLSv13    | "TLSv1.3" | TLSv1.3.|

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

Defines the certificate raw data.

**System capability**: SystemCapability.Communication.NetStack

| Type                                                                  | Description                  |
| --------------------------------------------------------------------- | --------------------- |
S
shawn_he 已提交
2677
|[cert.EncodingBlob](js-apis-cert.md#datablob) | Data and encoding format of the certificate.|