This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Description
This one's pleasantly easy to reproduce:
var net = require('net');
var path = '/tmp/echo.sock';
var server = net.createServer(function(c) {
console.log('server connected');
c.on('end', function() {
console.log('server disconnected');
});
c.write('hello\r\n');
c.pipe(c);
});
server.listen(path, function() {
console.log('server bound on %s', path);
});
Running this more than once will throw Error: listen EADDRINUSE. The file system artifact is not getting cleaned up.