UNPKG

fastcgi-stream

Version:

Fast FastCGI Stream wrapper for reading/writing FCGI records.

20 lines (15 loc) 503 B
'use strict'; var common = require('./common'); var GetValuesResult = module.exports = function GetValuesResult(values) { this.values = values || []; this.getSize = function() { return common.calculateNameValuePairsLength(this.values); }; this.write = function(buffer) { common.writeNameValuePairs(buffer, this.values); }; this.read = function(buffer) { this.values = common.readNameValuePairs(buffer); }; }; GetValuesResult.prototype.TYPE = GetValuesResult.TYPE = 10;