mirror of
https://github.com/denoland/deno.git
synced 2024-12-18 21:35:31 -05:00
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
|
// deno-fmt-ignore-file
|
||
|
// deno-lint-ignore-file
|
||
|
|
||
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
||
|
// Taken from Node 20.11.1
|
||
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
||
|
|
||
|
// Flags: --expose-internals
|
||
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
if (!common.hasCrypto)
|
||
|
common.skip('missing crypto');
|
||
|
|
||
|
if (!common.hasMultiLocalhost())
|
||
|
common.skip('platform-specific test.');
|
||
|
|
||
|
const http2 = require('http2');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
const server = http2.createServer((req, res) => {
|
||
|
console.log(`Connect from: ${req.connection.remoteAddress}`);
|
||
|
assert.strictEqual(req.connection.remoteAddress, '127.0.0.2');
|
||
|
|
||
|
req.on('end', common.mustCall(() => {
|
||
|
res.writeHead(200, { 'Content-Type': 'text/plain' });
|
||
|
res.end(`You are from: ${req.connection.remoteAddress}`);
|
||
|
}));
|
||
|
req.resume();
|
||
|
});
|
||
|
|
||
|
server.listen(0, '127.0.0.1', common.mustCall(() => {
|
||
|
const options = { localAddress: '127.0.0.2', family: 4 };
|
||
|
|
||
|
const client = http2.connect(
|
||
|
'http://localhost:' + server.address().port,
|
||
|
options
|
||
|
);
|
||
|
const req = client.request({
|
||
|
':path': '/'
|
||
|
});
|
||
|
req.on('data', () => req.resume());
|
||
|
req.on('end', common.mustCall(function() {
|
||
|
client.close();
|
||
|
req.close();
|
||
|
server.close();
|
||
|
}));
|
||
|
req.end();
|
||
|
}));
|