(entry)
| 66 | var DEFAULT_HEADER_TABLE_LIMIT = 4096; |
| 67 | |
| 68 | function size(entry) { |
| 69 | return (new Buffer(entry[0] + entry[1], 'utf8')).length + 32; |
| 70 | } |
| 71 | |
| 72 | // The `add(index, entry)` can be used to [manage the header table][tablemgmt]: |
| 73 | // [tablemgmt]: https://tools.ietf.org/html/rfc7541#section-4 |