@@ -256,7 +256,6 @@ function Socket(options) {
256
256
}
257
257
258
258
// shut down the socket when we're finished with it.
259
- this . on ( 'finish' , onSocketFinish ) ;
260
259
this . on ( '_socketEnd' , onSocketEnd ) ;
261
260
262
261
initSocketHandle ( this ) ;
@@ -303,39 +302,42 @@ Socket.prototype._unrefTimer = function _unrefTimer() {
303
302
304
303
function shutdownSocket ( self , callback ) {
305
304
var req = new ShutdownWrap ( ) ;
306
- req . oncomplete = callback ;
305
+ req . oncomplete = afterShutdown ;
307
306
req . handle = self . _handle ;
307
+ req . callback = callback ;
308
308
return self . _handle . shutdown ( req ) ;
309
309
}
310
310
311
311
// the user has called .end(), and all the bytes have been
312
312
// sent out to the other side.
313
- function onSocketFinish ( ) {
314
- // If still connecting - defer handling 'finish' until 'connect' will happen
313
+ Socket . prototype . _final = function ( cb ) {
314
+ // If still connecting - defer handling `_final` until 'connect' will happen
315
315
if ( this . connecting ) {
316
- debug ( 'osF : not yet connected' ) ;
317
- return this . once ( 'connect' , onSocketFinish ) ;
316
+ debug ( '_final : not yet connected' ) ;
317
+ return this . once ( 'connect' , ( ) => this . _final ( cb ) ) ;
318
318
}
319
319
320
- debug ( 'onSocketFinish' ) ;
321
320
if ( ! this . readable || this . _readableState . ended ) {
322
- debug ( 'oSF: ended, destroy' , this . _readableState ) ;
321
+ debug ( '_final: ended, destroy' , this . _readableState ) ;
322
+ cb ( ) ;
323
323
return this . destroy ( ) ;
324
324
}
325
325
326
- debug ( 'oSF : not ended, call shutdown()' ) ;
326
+ debug ( '_final : not ended, call shutdown()' ) ;
327
327
328
328
// otherwise, just shutdown, or destroy() if not possible
329
- if ( ! this . _handle || ! this . _handle . shutdown )
329
+ if ( ! this . _handle || ! this . _handle . shutdown ) {
330
+ cb ( ) ;
330
331
return this . destroy ( ) ;
332
+ }
331
333
332
334
var err = defaultTriggerAsyncIdScope (
333
- this [ async_id_symbol ] , shutdownSocket , this , afterShutdown
335
+ this [ async_id_symbol ] , shutdownSocket , this , cb
334
336
) ;
335
337
336
338
if ( err )
337
339
return this . destroy ( errnoException ( err , 'shutdown' ) ) ;
338
- }
340
+ } ;
339
341
340
342
341
343
function afterShutdown ( status , handle ) {
@@ -344,6 +346,8 @@ function afterShutdown(status, handle) {
344
346
debug ( 'afterShutdown destroyed=%j' , self . destroyed ,
345
347
self . _readableState ) ;
346
348
349
+ this . callback ( ) ;
350
+
347
351
// callback may come after call to destroy.
348
352
if ( self . destroyed )
349
353
return ;
0 commit comments