File tree 1 file changed +4
-7
lines changed
1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -27,20 +27,17 @@ const net = require('net');
27
27
28
28
let conns_closed = 0 ;
29
29
30
- const remoteAddrCandidates = [ common . localhostIPv4 ] ;
31
- if ( common . hasIPv6 ) remoteAddrCandidates . push ( '::1' , '::ffff:127.0.0.1' ) ;
30
+ const remoteAddrCandidates = [ common . localhostIPv4 ,
31
+ '::1' ,
32
+ '::ffff:127.0.0.1' ] ;
32
33
33
- const remoteFamilyCandidates = [ 'IPv4' ] ;
34
- if ( common . hasIPv6 ) remoteFamilyCandidates . push ( 'IPv6' ) ;
34
+ const remoteFamilyCandidates = [ 'IPv4' , 'IPv6' ] ;
35
35
36
36
const server = net . createServer ( common . mustCall ( function ( socket ) {
37
- // REM: assert.match(socket.remoteAddress,
38
- // REM: /^127\.0\.0\.1$|^::1$|^::ffff:127\.0\.0\.1$/);
39
37
assert . ok ( remoteAddrCandidates . includes ( socket . remoteAddress ) ,
40
38
`Illformed remoteAddress: ${ socket . remoteAddress } ` ) ;
41
39
assert . ok ( remoteFamilyCandidates . includes ( socket . remoteFamily ) ,
42
40
`Illformed remoteFamily: ${ socket . remoteFamily } ` ) ;
43
- // REM: assert.ok(remoteFamilyCandidates.includes(socket.remoteFamily));
44
41
assert . ok ( socket . remotePort ) ;
45
42
assert . notStrictEqual ( socket . remotePort , this . address ( ) . port ) ;
46
43
socket . on ( 'end' , function ( ) {
You can’t perform that action at this time.
0 commit comments