提交 10d8e2f8 编写于 作者: Z zhanghaifeng

fix simple code

Signed-off-by: Nzhanghaifeng <zhanghaifeng11@huawei.com>
上级 dc20c03b
...@@ -881,18 +881,18 @@ bindSocket(socketParam: TCPSocket \| UDPSocket, callback: AsyncCallback\<void>): ...@@ -881,18 +881,18 @@ bindSocket(socketParam: TCPSocket \| UDPSocket, callback: AsyncCallback\<void>):
```js ```js
import socket from "@ohos.net.socket"; import socket from "@ohos.net.socket";
connection.getDefaultNet().then((netHandle)=>{ connection.getDefaultNet().then((netHandle) => {
var tcp = socket.constructTCPSocketInstance(); var tcp = socket.constructTCPSocketInstance();
var udp = socket.constructUDPSocketInstance(); var udp = socket.constructUDPSocketInstance();
let socketType = "TCPSocket"; let socketType = "TCPSocket";
if (socketType == "TCPSocket") { if (socketType == "TCPSocket") {
tcp.bind({ tcp.bind({
address: '192.168.xx.xxx', port: xxxx, family: 1 address: '192.168.xx.xxx', port: 8080, family: 1
}, err => { }, error => {
if (err) { if (error) {
console.log('bind fail'); console.log('bind fail');
} }
netHandle.bindSocket(tcp, (error, data)=>{ netHandle.bindSocket(tcp, (error, data) => {
if (error) { if (error) {
console.log(JSON.stringify(error)); console.log(JSON.stringify(error));
} else { } else {
...@@ -902,19 +902,19 @@ connection.getDefaultNet().then((netHandle)=>{ ...@@ -902,19 +902,19 @@ connection.getDefaultNet().then((netHandle)=>{
}) })
} else { } else {
let callback = value => { let callback = value => {
console.log(TAG + "on message, message:" + value.message + ", remoteInfo:" + value.remoteInfo); console.log("on message, message:" + value.message + ", remoteInfo:" + value.remoteInfo);
} }
udp.on('message', callback); udp.on('message', callback);
udp.bind({ udp.bind({
address: '192.168.xx.xxx', port: xxxx, family: 1 address: '192.168.xx.xxx', port: 8080, family: 1
}, err => { }, error => {
if (err) { if (error) {
console.log('bind fail'); console.log('bind fail');
} }
udp.on('message', (data) => { udp.on('message', (data) => {
console.log(JSON.stringify(data)) console.log(JSON.stringify(data))
}); });
netHandle.bindSocket(udp,(error, data)=>{ netHandle.bindSocket(udp, (error, data) => {
if (error) { if (error) {
console.log(JSON.stringify(error)); console.log(JSON.stringify(error));
} else { } else {
...@@ -950,45 +950,41 @@ bindSocket(socketParam: TCPSocket \| UDPSocket): Promise\<void>; ...@@ -950,45 +950,41 @@ bindSocket(socketParam: TCPSocket \| UDPSocket): Promise\<void>;
```js ```js
import socket from "@ohos.net.socket"; import socket from "@ohos.net.socket";
connection.getDefaultNet().then((netHandle)=>{ connection.getDefaultNet().then((netHandle) => {
var tcp = socket.constructTCPSocketInstance(); var tcp = socket.constructTCPSocketInstance();
var udp = socket.constructUDPSocketInstance(); var udp = socket.constructUDPSocketInstance();
let socketType = "TCPSocket"; let socketType = "TCPSocket";
if (socketType == "TCPSocket") { if (socketType == "TCPSocket") {
tcp.bind({ tcp.bind({
address: '192.168.xx.xxx', port: xxxx, family: 1 address: '192.168.xx.xxx', port: 8080, family: 1
}, err => { }, error => {
if (err) { if (error) {
console.log('bind fail'); console.log('bind fail');
} }
netHandle.bindSocket(tcp).then((err, data) => { netHandle.bindSocket(tcp).then((data) => {
if (err) { console.log(JSON.stringify(data));
console.log(JSON.stringify(err)); }).catch(error => {
} else { console.log(JSON.stringify(error));
console.log(JSON.stringify(data));
}
}) })
}) })
} else { } else {
let callback = value => { let callback = value => {
console.log(TAG + "on message, message:" + value.message + ", remoteInfo:" + value.remoteInfo); console.log("on message, message:" + value.message + ", remoteInfo:" + value.remoteInfo);
} }
udp.on('message', callback); udp.on('message', callback);
udp.bind({ udp.bind({
address: '192.168.xx.xxx', port: xxxx, family: 1 address: '192.168.xx.xxx', port: 8080, family: 1
}, err => { }, error => {
if (err) { if (error) {
console.log('bind fail'); console.log('bind fail');
} }
udp.on('message', (data) => { udp.on('message', (data) => {
console.log(JSON.stringify(data)); console.log(JSON.stringify(data));
}) })
netHandle.bindSocket(udp).then((err, data) => { netHandle.bindSocket(udp).then((data) => {
if (err) { console.log(JSON.stringify(data));
console.log(JSON.stringify(err)); }).catch(error => {
} else { console.log(JSON.stringify(error));
console.log(JSON.stringify(data));
}
}) })
}) })
} }
......
...@@ -35,15 +35,21 @@ setIfaceConfig(iface: string, ic: InterfaceConfiguration, callback: AsyncCallbac ...@@ -35,15 +35,21 @@ setIfaceConfig(iface: string, ic: InterfaceConfiguration, callback: AsyncCallbac
**示例:** **示例:**
```js ```js
ethernet.setIfaceConfig("eth0", {mode:ethernet.STATIC,ipAddr:"192.168.1.123", routeAddr:"192.168.1.1", ethernet.setIfaceConfig("eth0", {
gateAddr:"192.168.1.1", maskAddr:"255.255.255.0", dnsAddr0:"1.1.1.1", dnsAddr1:"2.2.2.2"}, mode: 0,
(error) => { ipAddr: "192.168.1.123",
if (error) { route: "192.168.1.1",
console.log("setIfaceConfig callback error = " + error); gateway: "192.168.1.1",
} else { netMask: "255.255.255.0",
console.log("setIfaceConfig callback ok "); dnsServers: "1.1.1.1",
} domain: "2.2.2.2"
}); }, (error) => {
if (error) {
console.log("setIfaceConfig callback error = " + error);
} else {
console.log("setIfaceConfig callback ok ");
}
});
``` ```
## ethernet.setIfaceConfig ## ethernet.setIfaceConfig
...@@ -74,10 +80,17 @@ setIfaceConfig(iface: string, ic: InterfaceConfiguration): Promise\<void> ...@@ -74,10 +80,17 @@ setIfaceConfig(iface: string, ic: InterfaceConfiguration): Promise\<void>
**示例:** **示例:**
```js ```js
ethernet.setIfaceConfig("eth0", {mode:ethernet.STATIC,ipAddr:"192.168.1.123", routeAddr:"192.168.1.1", ethernet.setIfaceConfig("eth0", {
gateAddr:"192.168.1.1", maskAddr:"255.255.255.0", dnsAddr0:"1.1.1.1", dnsAddr1:"2.2.2.2"}).then(() => { mode: 0,
ipAddr: "192.168.1.123",
route: "192.168.1.1",
gateway: "192.168.1.1",
netMask: "255.255.255.0",
dnsServers: "1.1.1.1",
domain: "2.2.2.2"
}).then(() => {
console.log("setIfaceConfig promiss ok "); console.log("setIfaceConfig promiss ok ");
}).catch((error) => { }).catch(error => {
console.log("setIfaceConfig promiss error = " + error); console.log("setIfaceConfig promiss error = " + error);
}); });
``` ```
...@@ -110,11 +123,11 @@ ethernet.getIfaceConfig("eth0", (error, value) => { ...@@ -110,11 +123,11 @@ ethernet.getIfaceConfig("eth0", (error, value) => {
} else { } else {
console.log("getIfaceConfig callback mode = " + value.mode); console.log("getIfaceConfig callback mode = " + value.mode);
console.log("getIfaceConfig callback ipAddr = " + value.ipAddr); console.log("getIfaceConfig callback ipAddr = " + value.ipAddr);
console.log("getIfaceConfig callback routeAddr = " + value.routeAddr); console.log("getIfaceConfig callback route = " + value.route);
console.log("getIfaceConfig callback gateAddr = " + value.gateAddr); console.log("getIfaceConfig callback gateway = " + value.gateway);
console.log("getIfaceConfig callback maskAddr = " + value.maskAddr); console.log("getIfaceConfig callback netMask = " + value.netMask);
console.log("getIfaceConfig callback dns0Addr = " + value.dns0Addr); console.log("getIfaceConfig callback dnsServers = " + value.dnsServers);
console.log("getIfaceConfig callback dns1Addr = " + value.dns1Addr); console.log("getIfaceConfig callback domain = " + value.domain);
} }
}); });
``` ```
...@@ -149,12 +162,12 @@ getIfaceConfig(iface: string): Promise\<InterfaceConfiguration> ...@@ -149,12 +162,12 @@ getIfaceConfig(iface: string): Promise\<InterfaceConfiguration>
ethernet.getIfaceConfig("eth0").then((data) => { ethernet.getIfaceConfig("eth0").then((data) => {
console.log("getIfaceConfig promiss mode = " + data.mode); console.log("getIfaceConfig promiss mode = " + data.mode);
console.log("getIfaceConfig promiss ipAddr = " + data.ipAddr); console.log("getIfaceConfig promiss ipAddr = " + data.ipAddr);
console.log("getIfaceConfig promiss routeAddr = " + data.routeAddr); console.log("getIfaceConfig promiss route = " + data.route);
console.log("getIfaceConfig promiss gateAddr = " + data.gateAddr); console.log("getIfaceConfig promiss gateway = " + data.gateway);
console.log("getIfaceConfig promiss maskAddr = " + data.maskAddr); console.log("getIfaceConfig promiss netMask = " + data.netMask);
console.log("getIfaceConfig promiss dns0Addr = " + data.dns0Addr); console.log("getIfaceConfig promiss dnsServers = " + data.dnsServers);
console.log("getIfaceConfig promiss dns1Addr = " + data.dns1Addr); console.log("getIfaceConfig promiss domain = " + data.domain);
}).catch((error) => { }).catch(error => {
console.log("getIfaceConfig promiss error = " + error); console.log("getIfaceConfig promiss error = " + error);
}); });
``` ```
...@@ -182,11 +195,11 @@ isIfaceActive(iface: string, callback: AsyncCallback\<number>): void ...@@ -182,11 +195,11 @@ isIfaceActive(iface: string, callback: AsyncCallback\<number>): void
```js ```js
ethernet.isIfaceActive("eth0", (error, value) => { ethernet.isIfaceActive("eth0", (error, value) => {
if (error) { if (error) {
console.log("whether2Activate callback error = " + error); console.log("whether2Activate callback error = " + error);
} else { } else {
console.log("whether2Activate callback = " + value); console.log("whether2Activate callback = " + value);
} }
}); });
``` ```
...@@ -218,9 +231,9 @@ isIfaceActive(iface: string): Promise\<number> ...@@ -218,9 +231,9 @@ isIfaceActive(iface: string): Promise\<number>
```js ```js
ethernet.isIfaceActive("eth0").then((data) => { ethernet.isIfaceActive("eth0").then((data) => {
console.log("isIfaceActive promiss = " + data); console.log("isIfaceActive promiss = " + data);
}).catch((error) => { }).catch(error => {
console.log("isIfaceActive promiss error = " + error); console.log("isIfaceActive promiss error = " + error);
}); });
``` ```
...@@ -246,14 +259,14 @@ getAllActiveIfaces(callback: AsyncCallback\<Array\<string>>): void ...@@ -246,14 +259,14 @@ getAllActiveIfaces(callback: AsyncCallback\<Array\<string>>): void
```js ```js
ethernet.getAllActiveIfaces((error, value) => { ethernet.getAllActiveIfaces((error, value) => {
if (error) { if (error) {
console.log("getAllActiveIfaces callback error = " + error); console.log("getAllActiveIfaces callback error = " + error);
} else { } else {
console.log("getAllActiveIfaces callback value.length = " + value.length); console.log("getAllActiveIfaces callback value.length = " + value.length);
for (let i = 0; i < value.length; i++) { for (let i = 0; i < value.length; i++) {
console.log("getAllActiveIfaces callback = " + value[i]); console.log("getAllActiveIfaces callback = " + value[i]);
}
} }
}
}); });
``` ```
...@@ -280,11 +293,11 @@ getAllActiveIfaces(): Promise\<Array\<string>> ...@@ -280,11 +293,11 @@ getAllActiveIfaces(): Promise\<Array\<string>>
```js ```js
ethernet.getAllActiveIfaces().then((data) => { ethernet.getAllActiveIfaces().then((data) => {
console.log("getAllActiveIfaces promiss data.length = " + data.length); console.log("getAllActiveIfaces promiss data.length = " + data.length);
for (let i = 0; i < data.length; i++) { for (let i = 0; i < data.length; i++) {
console.log("getAllActiveIfaces promiss = " + data[i]); console.log("getAllActiveIfaces promiss = " + data[i]);
} }
}).catch((error) => { }).catch(error => {
console.log("getAllActiveIfaces promiss error = " + error); console.log("getAllActiveIfaces promiss error = " + error);
}); });
``` ```
......
...@@ -145,7 +145,7 @@ startSharing(type: SharingIfaceType, callback: AsyncCallback\<void>): void ...@@ -145,7 +145,7 @@ startSharing(type: SharingIfaceType, callback: AsyncCallback\<void>): void
```js ```js
import SharingIfaceType from '@ohos.net.sharing' import SharingIfaceType from '@ohos.net.sharing'
sharing.startSharing(SharingIfaceType.SHARING_WIFI, (error) => { sharing.startSharing(0, (error) => {
console.log(JSON.stringify(error)); console.log(JSON.stringify(error));
}); });
``` ```
...@@ -178,7 +178,7 @@ startSharing(type: SharingIfaceType): Promise\<void> ...@@ -178,7 +178,7 @@ startSharing(type: SharingIfaceType): Promise\<void>
```js ```js
import SharingIfaceType from '@ohos.net.sharing' import SharingIfaceType from '@ohos.net.sharing'
sharing.startSharing(SharingIfaceType.SHARING_WIFI).then(() => { sharing.startSharing(0).then(() => {
console.log("start wifi sharing successful"); console.log("start wifi sharing successful");
}).catch(error => { }).catch(error => {
console.log("start wifi sharing failed"); console.log("start wifi sharing failed");
...@@ -208,7 +208,7 @@ stopSharing(type: SharingIfaceType, callback: AsyncCallback\<void>): void ...@@ -208,7 +208,7 @@ stopSharing(type: SharingIfaceType, callback: AsyncCallback\<void>): void
```js ```js
import SharingIfaceType from '@ohos.net.sharing' import SharingIfaceType from '@ohos.net.sharing'
sharing.stopSharing(SharingIfaceType.SHARING_WIFI, (error) => { sharing.stopSharing(0, (error) => {
console.log(JSON.stringify(error)); console.log(JSON.stringify(error));
}); });
``` ```
...@@ -241,7 +241,7 @@ stopSharing(type: SharingIfaceType): Promise\<void> ...@@ -241,7 +241,7 @@ stopSharing(type: SharingIfaceType): Promise\<void>
```js ```js
import SharingIfaceType from '@ohos.net.sharing' import SharingIfaceType from '@ohos.net.sharing'
sharing.stopSharing(SharingIfaceType.SHARING_WIFI).then(() => { sharing.stopSharing(0).then(() => {
console.log("stop wifi sharing successful"); console.log("stop wifi sharing successful");
}).catch(error => { }).catch(error => {
console.log("stop wifi sharing failed"); console.log("stop wifi sharing failed");
...@@ -436,7 +436,7 @@ getSharingIfaces(state: SharingIfaceState, callback: AsyncCallback\<Array\<strin ...@@ -436,7 +436,7 @@ getSharingIfaces(state: SharingIfaceState, callback: AsyncCallback\<Array\<strin
```js ```js
import SharingIfaceState from '@ohos.net.sharing' import SharingIfaceState from '@ohos.net.sharing'
sharing.getSharingIfaces(SharingIfaceState.SHARING_NIC_CAN_SERVER, (error, data) => { sharing.getSharingIfaces(2, (error, data) => {
console.log(JSON.stringify(error)); console.log(JSON.stringify(error));
console.log(JSON.stringify(data)); console.log(JSON.stringify(data));
}); });
...@@ -470,7 +470,7 @@ getSharingIfaces(state: SharingIfaceState): Promise\<Array\<string>> ...@@ -470,7 +470,7 @@ getSharingIfaces(state: SharingIfaceState): Promise\<Array\<string>>
```js ```js
import SharingIfaceState from '@ohos.net.sharing' import SharingIfaceState from '@ohos.net.sharing'
sharing.getSharingIfaces(SharingIfaceState.SHARING_NIC_CAN_SERVER).then(data => { sharing.getSharingIfaces(2).then(data => {
console.log(JSON.stringify(data)); console.log(JSON.stringify(data));
}).catch(error => { }).catch(error => {
console.log(JSON.stringify(error)); console.log(JSON.stringify(error));
...@@ -500,7 +500,7 @@ getSharingState(type: SharingIfaceType, callback: AsyncCallback\<SharingIfaceSta ...@@ -500,7 +500,7 @@ getSharingState(type: SharingIfaceType, callback: AsyncCallback\<SharingIfaceSta
```js ```js
import SharingIfaceType from '@ohos.net.sharing' import SharingIfaceType from '@ohos.net.sharing'
sharing.getSharingState(SharingIfaceType.SHARING_WIFI, (error, data) => { sharing.getSharingState(0, (error, data) => {
console.log(JSON.stringify(error)); console.log(JSON.stringify(error));
console.log(JSON.stringify(data)); console.log(JSON.stringify(data));
}); });
...@@ -534,7 +534,7 @@ getSharingState(type: SharingIfaceType): Promise\<SharingIfaceState> ...@@ -534,7 +534,7 @@ getSharingState(type: SharingIfaceType): Promise\<SharingIfaceState>
```js ```js
import SharingIfaceType from '@ohos.net.sharing' import SharingIfaceType from '@ohos.net.sharing'
sharing.getSharingState(SharingIfaceType.SHARING_WIFI).then(data => { sharing.getSharingState(0).then(data => {
console.log(JSON.stringify(data)); console.log(JSON.stringify(data));
}).catch(error => { }).catch(error => {
console.log(JSON.stringify(error)); console.log(JSON.stringify(error));
...@@ -564,7 +564,7 @@ getSharableRegexes(type: SharingIfaceType, callback: AsyncCallback\<Array\<strin ...@@ -564,7 +564,7 @@ getSharableRegexes(type: SharingIfaceType, callback: AsyncCallback\<Array\<strin
```js ```js
import SharingIfaceType from '@ohos.net.sharing' import SharingIfaceType from '@ohos.net.sharing'
sharing.getSharableRegexes(SharingIfaceType.SHARING_WIFI, (error, data) => { sharing.getSharableRegexes(0, (error, data) => {
console.log(JSON.stringify(error)); console.log(JSON.stringify(error));
console.log(JSON.stringify(data)); console.log(JSON.stringify(data));
}); });
...@@ -598,7 +598,7 @@ getSharableRegexes(type: SharingIfaceType): Promise\<Array\<string>> ...@@ -598,7 +598,7 @@ getSharableRegexes(type: SharingIfaceType): Promise\<Array\<string>>
```js ```js
import SharingIfaceType from '@ohos.net.sharing' import SharingIfaceType from '@ohos.net.sharing'
sharing.getSharableRegexes(SharingIfaceType.SHARING_WIFI).then(data => { sharing.getSharableRegexes(0).then(data => {
console.log(JSON.stringify(data)); console.log(JSON.stringify(data));
}).catch(error => { }).catch(error => {
console.log(JSON.stringify(error)); console.log(JSON.stringify(error));
...@@ -627,9 +627,8 @@ on(type: 'sharingStateChange', callback: Callback\<boolean>): void ...@@ -627,9 +627,8 @@ on(type: 'sharingStateChange', callback: Callback\<boolean>): void
**示例:** **示例:**
```js ```js
sharing.on('sharingStateChange', (error, data) => { sharing.on('sharingStateChange', (data) => {
console.log(JSON.stringify(error)); console.log('on sharingStateChange:' + JSON.stringify(data));
console.log(JSON.stringify(data));
}); });
``` ```
...@@ -655,8 +654,7 @@ off(type: 'sharingStateChange', callback?: Callback\<boolean>): void ...@@ -655,8 +654,7 @@ off(type: 'sharingStateChange', callback?: Callback\<boolean>): void
**示例:** **示例:**
```js ```js
sharing.off('sharingStateChange', (error, data) => { sharing.off('sharingStateChange', (data) => {
console.log(JSON.stringify(error));
console.log(JSON.stringify(data)); console.log(JSON.stringify(data));
}); });
``` ```
...@@ -683,9 +681,8 @@ on(type: 'interfaceSharingStateChange', callback: Callback\<{ type: SharingIface ...@@ -683,9 +681,8 @@ on(type: 'interfaceSharingStateChange', callback: Callback\<{ type: SharingIface
**示例:** **示例:**
```js ```js
sharing.on('interfaceSharingStateChange', (error, data) => { sharing.on('interfaceSharingStateChange', (data) => {
console.log(JSON.stringify(error)); console.log('on interfaceSharingStateChange:' + JSON.stringify(data));
console.log(JSON.stringify(data));
}); });
``` ```
...@@ -711,8 +708,7 @@ off(type: 'interfaceSharingStateChange', callback?: Callback\<{ type: SharingIfa ...@@ -711,8 +708,7 @@ off(type: 'interfaceSharingStateChange', callback?: Callback\<{ type: SharingIfa
**示例:** **示例:**
```js ```js
sharing.off('interfaceSharingStateChange', (error, data) => { sharing.off('interfaceSharingStateChange', (data) => {
console.log(JSON.stringify(error));
console.log(JSON.stringify(data)); console.log(JSON.stringify(data));
}); });
``` ```
...@@ -739,9 +735,8 @@ on(type: 'sharingUpstreamChange', callback: Callback\<NetHandle>): void ...@@ -739,9 +735,8 @@ on(type: 'sharingUpstreamChange', callback: Callback\<NetHandle>): void
**示例:** **示例:**
```js ```js
sharing.on('sharingUpstreamChange', (error, data) => { sharing.on('sharingUpstreamChange', (data) => {
console.log(JSON.stringify(error)); console.log('on sharingUpstreamChange:' + JSON.stringify(data));
console.log(JSON.stringify(data));
}); });
``` ```
...@@ -767,8 +762,7 @@ off(type: 'sharingUpstreamChange', callback?: Callback\<NetHandle>): void ...@@ -767,8 +762,7 @@ off(type: 'sharingUpstreamChange', callback?: Callback\<NetHandle>): void
**示例:** **示例:**
```js ```js
sharing.off('sharingUpstreamChange', (error, data) => { sharing.off('sharingUpstreamChange', (data) => {
console.log(JSON.stringify(error));
console.log(JSON.stringify(data)); console.log(JSON.stringify(data));
}); });
``` ```
......
...@@ -1783,7 +1783,7 @@ connect(options: TLSConnectOptions, callback: AsyncCallback\<void>): void ...@@ -1783,7 +1783,7 @@ connect(options: TLSConnectOptions, callback: AsyncCallback\<void>): void
```js ```js
let tlsTwoWay = socket.constructTLSSocketInstance(); // Two way authentication let tlsTwoWay = socket.constructTLSSocketInstance(); // Two way authentication
tlsTwoWay.bind({address: '192.168.xxx.xxx', port: xxxx, family: 1}, err => { tlsTwoWay.bind({address: '192.168.xxx.xxx', port: 8080, family: 1}, err => {
if (err) { if (err) {
console.log('bind fail'); console.log('bind fail');
return; return;
...@@ -1794,7 +1794,7 @@ let options = { ...@@ -1794,7 +1794,7 @@ let options = {
ALPNProtocols: ["spdy/1", "http/1.1"], ALPNProtocols: ["spdy/1", "http/1.1"],
address: { address: {
address: "192.168.xx.xxx", address: "192.168.xx.xxx",
port: xxxx, port: 8080,
family: 1, family: 1,
}, },
secureOptions: { secureOptions: {
...@@ -1809,12 +1809,12 @@ let options = { ...@@ -1809,12 +1809,12 @@ let options = {
}, },
}; };
tlsTwoWay.connect(options, (err, data) => { tlsTwoWay.connect(options, (err, data) => {
console.error(err); console.error("connect callback error"+err);
console.log(data); console.log(JSON.stringify(data));
}); });
let tlsOneWay = socket.constructTLSSocketInstance(); // One way authentication let tlsOneWay = socket.constructTLSSocketInstance(); // One way authentication
tlsOneWay.bind({address: '192.168.xxx.xxx', port: xxxx, family: 1}, err => { tlsOneWay.bind({address: '192.168.xxx.xxx', port: 8080, family: 1}, err => {
if (err) { if (err) {
console.log('bind fail'); console.log('bind fail');
return; return;
...@@ -1824,7 +1824,7 @@ tlsOneWay.bind({address: '192.168.xxx.xxx', port: xxxx, family: 1}, err => { ...@@ -1824,7 +1824,7 @@ tlsOneWay.bind({address: '192.168.xxx.xxx', port: xxxx, family: 1}, err => {
let oneWayOptions = { let oneWayOptions = {
address: { address: {
address: "192.168.xxx.xxx", address: "192.168.xxx.xxx",
port: xxxx, port: 8080,
family: 1, family: 1,
}, },
secureOptions: { secureOptions: {
...@@ -1833,8 +1833,8 @@ let oneWayOptions = { ...@@ -1833,8 +1833,8 @@ let oneWayOptions = {
}, },
}; };
tlsOneWay.connect(oneWayOptions, (err, data) => { tlsOneWay.connect(oneWayOptions, (err, data) => {
console.error(err); console.error("connect callback error"+err);
console.log(data); console.log(JSON.stringify(data));
}); });
``` ```
...@@ -1883,7 +1883,7 @@ connect(options: TLSConnectOptions): Promise\<void> ...@@ -1883,7 +1883,7 @@ connect(options: TLSConnectOptions): Promise\<void>
```js ```js
let tlsTwoWay = socket.constructTLSSocketInstance(); // Two way authentication let tlsTwoWay = socket.constructTLSSocketInstance(); // Two way authentication
tlsTwoWay.bind({address: '192.168.xxx.xxx', port: xxxx, family: 1}, err => { tlsTwoWay.bind({address: '192.168.xxx.xxx', port: 8080, family: 1}, err => {
if (err) { if (err) {
console.log('bind fail'); console.log('bind fail');
return; return;
...@@ -1894,7 +1894,7 @@ let options = { ...@@ -1894,7 +1894,7 @@ let options = {
ALPNProtocols: ["spdy/1", "http/1.1"], ALPNProtocols: ["spdy/1", "http/1.1"],
address: { address: {
address: "xxxx", address: "xxxx",
port: xxxx, port: 8080,
family: 1, family: 1,
}, },
secureOptions: { secureOptions: {
...@@ -1909,13 +1909,13 @@ let options = { ...@@ -1909,13 +1909,13 @@ let options = {
}, },
}; };
tlsTwoWay.connect(options).then(data => { tlsTwoWay.connect(options).then(data => {
console.log(data); console.log(JSON.stringify(data));
}).catch(err => { }).catch(err => {
console.error(err); console.error(err);
}); });
let tlsOneWay = socket.constructTLSSocketInstance(); // One way authentication let tlsOneWay = socket.constructTLSSocketInstance(); // One way authentication
tlsOneWay.bind({address: '192.168.xxx.xxx', port: xxxx, family: 1}, err => { tlsOneWay.bind({address: '192.168.xxx.xxx', port: 8080, family: 1}, err => {
if (err) { if (err) {
console.log('bind fail'); console.log('bind fail');
return; return;
...@@ -1925,7 +1925,7 @@ tlsOneWay.bind({address: '192.168.xxx.xxx', port: xxxx, family: 1}, err => { ...@@ -1925,7 +1925,7 @@ tlsOneWay.bind({address: '192.168.xxx.xxx', port: xxxx, family: 1}, err => {
let oneWayOptions = { let oneWayOptions = {
address: { address: {
address: "192.168.xxx.xxx", address: "192.168.xxx.xxx",
port: xxxx, port: 8080,
family: 1, family: 1,
}, },
secureOptions: { secureOptions: {
...@@ -1934,7 +1934,7 @@ let oneWayOptions = { ...@@ -1934,7 +1934,7 @@ let oneWayOptions = {
}, },
}; };
tlsOneWay.connect(oneWayOptions).then(data => { tlsOneWay.connect(oneWayOptions).then(data => {
console.log(data); console.log(JSON.stringify(data));
}).catch(err => { }).catch(err => {
console.error(err); console.error(err);
}); });
...@@ -2263,7 +2263,7 @@ getCipherSuite(): Promise\<Array\<string>> ...@@ -2263,7 +2263,7 @@ getCipherSuite(): Promise\<Array\<string>>
```js ```js
tls.getCipherSuite().then(data => { tls.getCipherSuite().then(data => {
console.log(data); console.log('getCipherSuite success:' + JSON.stringify(data));
}).catch(err => { }).catch(err => {
console.error(err); console.error(err);
}); });
...@@ -2327,7 +2327,7 @@ getSignatureAlgorithms(): Promise\<Array\<string>> ...@@ -2327,7 +2327,7 @@ getSignatureAlgorithms(): Promise\<Array\<string>>
```js ```js
tls.getSignatureAlgorithms().then(data => { tls.getSignatureAlgorithms().then(data => {
console.log(data); console.log("getSignatureAlgorithms success" + data);
}).catch(err => { }).catch(err => {
console.error(err); console.error(err);
}); });
...@@ -2528,4 +2528,4 @@ TLS通信的协议版本。 ...@@ -2528,4 +2528,4 @@ TLS通信的协议版本。
| 类型 | 说明 | | 类型 | 说明 |
| --------------------------------------------------------------------- | --------------------- | | --------------------------------------------------------------------- | --------------------- |
|[cryptoFramework.EncodingBlob](js-apis-cryptoFramework.md#EncodingBlob) | 存储证书的数据和编码格式 | |[cryptoFramework.EncodingBlob](js-apis-cryptoFramework.md#datablob) | 存储证书的数据和编码格式 |
\ No newline at end of file \ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册