Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[squash] bump buffer size to 3000 bytes
  • Loading branch information
addaleax committed Aug 10, 2017
commit d02a8a74469a7e24f2cd64b4c291c9f70a1bcc23
2 changes: 1 addition & 1 deletion src/node_http2.h
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ class Headers {

private:
size_t count_;
MaybeStackBuffer<char> buf_;
MaybeStackBuffer<char, 3000> buf_;
};

} // namespace http2
Expand Down