@@ -236,7 +236,6 @@ function Socket(options) {
236
236
}
237
237
238
238
// shut down the socket when we're finished with it.
239
- this . on ( 'finish' , onSocketFinish ) ;
240
239
this . on ( '_socketEnd' , onSocketEnd ) ;
241
240
242
241
initSocketHandle ( this ) ;
@@ -280,39 +279,42 @@ Socket.prototype._unrefTimer = function _unrefTimer() {
280
279
281
280
function shutdownSocket ( self , callback ) {
282
281
var req = new ShutdownWrap ( ) ;
283
- req . oncomplete = callback ;
282
+ req . oncomplete = afterShutdown ;
284
283
req . handle = self . _handle ;
284
+ req . callback = callback ;
285
285
return self . _handle . shutdown ( req ) ;
286
286
}
287
287
288
288
// the user has called .end(), and all the bytes have been
289
289
// sent out to the other side.
290
- function onSocketFinish ( ) {
291
- // If still connecting - defer handling 'finish' until 'connect' will happen
290
+ Socket . prototype . _final = function ( cb ) {
291
+ // If still connecting - defer handling `_final` until 'connect' will happen
292
292
if ( this . connecting ) {
293
- debug ( 'osF : not yet connected' ) ;
294
- return this . once ( 'connect' , onSocketFinish ) ;
293
+ debug ( '_final : not yet connected' ) ;
294
+ return this . once ( 'connect' , ( ) => this . _final ( cb ) ) ;
295
295
}
296
296
297
- debug ( 'onSocketFinish' ) ;
298
297
if ( ! this . readable || this . _readableState . ended ) {
299
- debug ( 'oSF: ended, destroy' , this . _readableState ) ;
298
+ debug ( '_final: ended, destroy' , this . _readableState ) ;
299
+ cb ( ) ;
300
300
return this . destroy ( ) ;
301
301
}
302
302
303
- debug ( 'oSF : not ended, call shutdown()' ) ;
303
+ debug ( '_final : not ended, call shutdown()' ) ;
304
304
305
305
// otherwise, just shutdown, or destroy() if not possible
306
- if ( ! this . _handle || ! this . _handle . shutdown )
306
+ if ( ! this . _handle || ! this . _handle . shutdown ) {
307
+ cb ( ) ;
307
308
return this . destroy ( ) ;
309
+ }
308
310
309
311
var err = defaultTriggerAsyncIdScope (
310
- this [ async_id_symbol ] , shutdownSocket , this , afterShutdown
312
+ this [ async_id_symbol ] , shutdownSocket , this , cb
311
313
) ;
312
314
313
315
if ( err )
314
316
return this . destroy ( errnoException ( err , 'shutdown' ) ) ;
315
- }
317
+ } ;
316
318
317
319
318
320
function afterShutdown ( status , handle , req ) {
@@ -321,6 +323,8 @@ function afterShutdown(status, handle, req) {
321
323
debug ( 'afterShutdown destroyed=%j' , self . destroyed ,
322
324
self . _readableState ) ;
323
325
326
+ this . callback ( ) ;
327
+
324
328
// callback may come after call to destroy.
325
329
if ( self . destroyed )
326
330
return ;
0 commit comments