Skip to content

Commit

Permalink
http server module was pointing at socks5 >_<
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Dec 15, 2010
1 parent 45ffe0a commit d970e49
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion lib/servers/http.js
Expand Up @@ -6,7 +6,6 @@ module.exports = function (cb) {
console.dir(req); console.dir(req);
console.log(' *** res ***'); console.log(' *** res ***');
console.dir(res); console.dir(res);
session(stream, cb);
cb(req, res); cb(req, res);
}); });
}; };
2 changes: 1 addition & 1 deletion lib/servers/index.js
@@ -1,4 +1,4 @@
module.exports = { module.exports = {
socks5 : require('./socks5'), socks5 : require('./socks5'),
http : require('./socks5') http : require('./http')
}; };

0 comments on commit d970e49

Please sign in to comment.