Browse Source

Support both old and new HTTP closing APIs in benchmark program

v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
62277ab79b
  1. 10
      benchmark/http_simple.js

10
benchmark/http_simple.js

@ -1,7 +1,7 @@
path = require("path"); path = require("path");
var puts = require("sys").puts; var puts = require("sys").puts;
var old = false; var old = true;
http = require(old ? "http_old" : 'http'); http = require(old ? "http_old" : 'http');
if (old) puts('old version'); if (old) puts('old version');
@ -52,6 +52,10 @@ http.createServer(function (req, res) {
, "Content-Length": content_length , "Content-Length": content_length
} }
); );
if (old) res.write(body, 'ascii'); if (old) {
res.close(body, 'ascii'); res.write(body, 'ascii');
res.close();
} else {
res.close(body, 'ascii');
}
}).listen(8000); }).listen(8000);

Loading…
Cancel
Save