Home
last modified time | relevance | path

Searched refs:ServerResponse (Results 1 – 3 of 3) sorted by last modified time

/unit/
H A DCHANGES73 *) Bugfix: chunk argument of ServerResponse.write() can now be a
423 *) Feature: the ServerRequest and ServerResponse objects of Node.js
788 ServerResponse._implicitHeader() function; the bug had appeared in
/unit/src/nodejs/unit-http/
H A Dhttp_server.js17 function ServerResponse(req) { class
29 util.inherits(ServerResponse, EventEmitter);
31 ServerResponse.prototype.statusCode = 200;
33 ServerResponse.prototype.headers_len = 0;
34 ServerResponse.prototype.headers_count = 0;
35 ServerResponse.prototype.headersSent = false;
36 ServerResponse.prototype.destroyed = false;
37 ServerResponse.prototype.finished = false;
182 ServerResponse.prototype.writeHeader = ServerResponse.prototype.writeHead;
433 this.ServerResponse = ServerResponse;
[all …]
H A Dhttp.js11 ServerResponse,
25 ServerResponse,