Removing proxy test+debugging output
authorDarren <darren@darrenwhitlen.com>
Fri, 24 Jan 2014 12:48:13 +0000 (12:48 +0000)
committerDarren <darren@darrenwhitlen.com>
Fri, 24 Jan 2014 12:48:13 +0000 (12:48 +0000)
proxytest.js [deleted file]
server/proxy.js

diff --git a/proxytest.js b/proxytest.js
deleted file mode 100644 (file)
index 26d848b..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-var Proxy  = require('./server/proxy'),
-    Identd = require('./server/identd');
-
-var port_pairs = {};
-
-
-var serv = new Proxy.ProxyServer();
-serv.listen(7779, '0.0.0.0');
-
-serv.on('connection_open', function(pipe) {
-    pipe.identd_pair = pipe.irc_socket.localPort.toString() + '_' + pipe.irc_socket.remotePort.toString();
-    console.log('[IDENTD] opened ' + pipe.identd_pair);
-    port_pairs[pipe.identd_pair] = pipe.meta;
-});
-
-serv.on('connection_close', function(pipe) {
-    console.log('[IDENTD] closed ' + pipe.identd_pair);
-    delete port_pairs[pipe.identd_pair];
-});
-
-
-
-
-// Username lookup function for the identd
-var identdResolveUser = function(port_here, port_there, callback) {
-    var key = port_here.toString() + '_' + port_there.toString();
-    console.log('[IDENTD] lookup ' + key);
-    return port_pairs[key].username;
-};
-
-var identd_server = new Identd({
-        bind_addr: '0.0.0.0',
-        bind_port: 113,
-        user_id: identdResolveUser
-    });
-
-identd_server.start();
\ No newline at end of file
index 1dfaa9b205ddc9fc01589b13a7da3118e9bb6adc..0d30a798444add3896e44f8aafe4e219982f0f5d 100644 (file)
@@ -12,7 +12,7 @@ module.exports = {
 };
 
 function debug() {
-    console.log.apply(console, arguments);
+    //console.log.apply(console, arguments);
 }
 
 // Socket connection responses