httpsys native module crashes with Access Violation (0xc0000005) when serving a static file over a certain size (at 30KB+), and takes down node.exe process.
Reproducing is fairly simple and happens every time:
var http = require('httpsys').http(),
connect = require('connect');
http.createServer(connect().use(connect.static(__dirname)));
http.listen(process.env.PORT || 3103);