@@ -20,6 +20,10 @@ var server = net.createServer(function(socket) {
20
20
socket . on ( 'end' , function ( ) {
21
21
if ( ++ conns_closed == 2 ) server . close ( ) ;
22
22
} ) ;
23
+ socket . on ( 'close' , function ( ) {
24
+ assert . notEqual ( - 1 , remoteAddrCandidates . indexOf ( socket . remoteAddress ) ) ;
25
+ assert . notEqual ( - 1 , remoteFamilyCandidates . indexOf ( socket . remoteFamily ) ) ;
26
+ } ) ;
23
27
socket . resume ( ) ;
24
28
} ) ;
25
29
@@ -32,12 +36,20 @@ server.listen(common.PORT, 'localhost', function() {
32
36
assert . equal ( common . PORT , client . remotePort ) ;
33
37
client . end ( ) ;
34
38
} ) ;
39
+ client . on ( 'close' , function ( ) {
40
+ assert . notEqual ( - 1 , remoteAddrCandidates . indexOf ( client . remoteAddress ) ) ;
41
+ assert . notEqual ( - 1 , remoteFamilyCandidates . indexOf ( client . remoteFamily ) ) ;
42
+ } ) ;
35
43
client2 . on ( 'connect' , function ( ) {
36
44
assert . notEqual ( - 1 , remoteAddrCandidates . indexOf ( client2 . remoteAddress ) ) ;
37
45
assert . notEqual ( - 1 , remoteFamilyCandidates . indexOf ( client2 . remoteFamily ) ) ;
38
46
assert . equal ( common . PORT , client2 . remotePort ) ;
39
47
client2 . end ( ) ;
40
48
} ) ;
49
+ client2 . on ( 'close' , function ( ) {
50
+ assert . notEqual ( - 1 , remoteAddrCandidates . indexOf ( client2 . remoteAddress ) ) ;
51
+ assert . notEqual ( - 1 , remoteFamilyCandidates . indexOf ( client2 . remoteFamily ) ) ;
52
+ } ) ;
41
53
} ) ;
42
54
43
55
process . on ( 'exit' , function ( ) {
0 commit comments