Searched refs:remoteHost (Results 1 – 8 of 8) sorted by relevance
/third_party/node/deps/npm/node_modules/socks/build/client/ |
D | socksclient.js | 134 if (net.isIPv4(options.remoteHost.host)) { 136 buff.writeUInt32BE(ip.toLong(options.remoteHost.host)); 138 else if (net.isIPv6(options.remoteHost.host)) { 140 buff.writeBuffer(ip.toBuffer(options.remoteHost.host)); 144 buff.writeUInt8(Buffer.byteLength(options.remoteHost.host)); 145 buff.writeString(options.remoteHost.host); 148 buff.writeUInt16BE(options.remoteHost.port); 162 let remoteHost; 164 remoteHost = ip.fromLong(buff.readUInt32BE()); 167 remoteHost = ip.toString(buff.readBuffer(16)); [all …]
|
/third_party/node/deps/npm/node_modules/socks/build/common/ |
D | helpers.js | 74 function isValidSocksRemoteHost(remoteHost) { argument 75 return (remoteHost && 76 typeof remoteHost.host === 'string' && 77 typeof remoteHost.port === 'number' && 78 remoteHost.port >= 0 && 79 remoteHost.port <= 65535);
|
/third_party/node/deps/npm/node_modules/socks/docs/examples/typescript/ |
D | associateExample.md | 38 remoteHost: { host: '8.8.8.8', port: 53 }, // The remote host that replied with a UDP packet 69 remoteHost: { // This is the remote port on the SOCKS proxy server to send UDP frame packets to. 78 remoteHost: { host: '8.8.8.8', port: 53 }, 83 udpSocket.send(packet, info.remoteHost.port, info.remoteHost.host);
|
D | bindExample.md | 52 …remoteHost: { // This is the remote ip and port of the SOCKS proxy that is now accepting incoming … 66 …remoteHost: { // This is the remote ip and port that connected to the SOCKS proxy on the newly bou…
|
/third_party/node/deps/npm/node_modules/socks/docs/examples/javascript/ |
D | associateExample.md | 38 remoteHost: { host: '8.8.8.8', port: 53 }, // The remote host that replied with a UDP packet 69 remoteHost: { // This is the remote port on the SOCKS proxy server to send UDP frame packets to. 78 remoteHost: { host: '8.8.8.8', port: 53 }, 83 udpSocket.send(packet, info.remoteHost.port, info.remoteHost.host);
|
D | bindExample.md | 52 …remoteHost: { // This is the remote ip and port of the SOCKS proxy that is now accepting incoming … 66 …remoteHost: { // This is the remote ip and port that connected to the SOCKS proxy on the newly bou…
|
/third_party/node/deps/npm/node_modules/socks/ |
D | README.md | 274 console.log(info.remoteHost); 285 // info.remoteHost is the remote address of the client that connected to the SOCKS proxy. 286 console.log(info.remoteHost); 340 …remoteHost: { host: '165.227.108.231', port: 4444 }, // The remote host that replied with a UDP pa… 350 console.log(info.remoteHost); 360 remoteHost: { host: '165.227.108.231', port: 4444 }, 363 udpSocket.send(packet, info.remoteHost.port, info.remoteHost.host); 559 …remoteHost: { // The remote host to have the proxy send data to, or the remote host that send this… 571 remoteHost: SocksRemoteHost; 588 remoteHost: { [all …]
|
/third_party/node/deps/npm/node_modules/socks/typings/common/ |
D | constants.d.ts | 133 remoteHost?: SocksRemoteHost; property 138 remoteHost: SocksRemoteHost; property
|