diff options
author | euer <root@euer.krebsco.de> | 2012-12-20 15:53:41 +0100 |
---|---|---|
committer | euer <root@euer.krebsco.de> | 2012-12-20 15:53:41 +0100 |
commit | 17ffe40523144a60d4297cfb18c3b5fdaffa84af (patch) | |
tree | 6c1104cffe5e3d581d4924edc74f4626d208970d /hyper/sink | |
parent | a283809283e3e0606271ae263ff8d4ccbd990af6 (diff) |
//{hyper,json} -> //sandbox
//{icecrab,kachelmann,meinsack} -> //god
//host -> //punani/host
Diffstat (limited to 'hyper/sink')
-rw-r--r-- | hyper/sink/index.js | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/hyper/sink/index.js b/hyper/sink/index.js deleted file mode 100644 index b556b88d..00000000 --- a/hyper/sink/index.js +++ /dev/null @@ -1,13 +0,0 @@ -require('http').createServer(function (req, res) { - - req.on('data', function (data) { - require('util').puts(data); - }); - - req.on('end', function () { - res.writeHead(200, {'Content-Type': 'text/plain', 'Content-Length': 0}); - res.end(); - }); -}).listen(1337, '127.0.0.1', function () { - console.log('Running HyperSink at http://127.0.0.1:1337/'); -}); |