Tutorials References Exercises Videos Menu
Create Website Get Certified Upgrade

Node.js server.maxHeadersCount Property

❮ HTTP Server


Example

Set the maximum number of incoming headers:

var http = require('http');
var srvr = http.createServer(function (req, res) {
  res.write('Hello World!');
  res.end();
});
srvr.listen(8080);
srvr.maxHeadersCount = 100;

Definition and Usage

The server.maxHeadersCount property sets the maximum number of incoming headers. Default is 1000.

If the server.maxHeadersCount is set to 0, there will be no limit of incoming headers.


Syntax

server.maxHeadersCount = number;

Technical Details

Return Value: None
Node.js Version: 0.7.0

❮ HTTP Server