v0.7.4-release
Ryan Dahl 2010-11-18 16:28:10 -08:00
parent 2ba3c10d62
commit 1f18648394
1 changed files with 2 additions and 2 deletions

View File

@ -147,14 +147,14 @@ function setImplmentationMethods (self) {
};
function onReadable (readable, writeable) {
function onReadable (readable, writable) {
assert(this.socket);
var socket = this.socket;
socket._onReadable();
}
function onWritable (readable, writeable) {
function onWritable (readable, writable) {
assert(this.socket);
var socket = this.socket;
if (socket._connecting) {