mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
Black hole tcp reads after destroy()
This commit is contained in:
@@ -4,6 +4,8 @@ var timers = require('timers');
|
||||
var util = require('util');
|
||||
var assert = require('assert');
|
||||
|
||||
function noop() {};
|
||||
|
||||
// constructor for lazy loading
|
||||
function createPipe() {
|
||||
var Pipe = process.binding('pipe_wrap').Pipe;
|
||||
@@ -267,6 +269,7 @@ Socket.prototype.destroy = function(exception) {
|
||||
debug('close');
|
||||
if (this._handle) {
|
||||
this._handle.close();
|
||||
this._handle.onread = noop;
|
||||
this._handle = null;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user