if (accept.match(/\bdeflate\b/)) {
        res.setHeader('Content-Encoding', 'deflate');
        res.removeHeader('Content-Length');
        res.writeHead(200);
        ws.pipe(zlib.createDeflate()).pipe(res);