Skip to content

Commit

Permalink
increase PipeChannel bs default value up to 64kB
Browse files Browse the repository at this point in the history
  • Loading branch information
fxliang committed Oct 5, 2023
1 parent 60c7a71 commit b9df699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/PipeChannel.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ namespace weasel {
};

public:
PipeChannel(std::wstring &&pn_cmd, SECURITY_ATTRIBUTES *s = NULL, size_t bs = 4 * 1024)
PipeChannel(std::wstring &&pn_cmd, SECURITY_ATTRIBUTES *s = NULL, size_t bs = 64 * 1024)
: PipeChannelBase(std::move(pn_cmd), bs, s)
{}

Expand Down

0 comments on commit b9df699

Please sign in to comment.