-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Burl: HTTP and SOCKS5 proxy support #20
Conversation
Antora version: an automated preview of the documentation is available at https://20.http-io.prtest2.cppalliance.org/site/index.html |
a8d9672
to
322da07
Compare
Antora version: an automated preview of the documentation is available at https://20.http-io.prtest2.cppalliance.org/site/index.html |
Antora version: an automated preview of the documentation is available at https://20.http-io.prtest2.cppalliance.org/site/index.html |
1 similar comment
Antora version: an automated preview of the documentation is available at https://20.http-io.prtest2.cppalliance.org/site/index.html |
fdfcf3e
to
438c54e
Compare
Antora version: an automated preview of the documentation is available at https://20.http-io.prtest2.cppalliance.org/site/index.html |
1 similar comment
Antora version: an automated preview of the documentation is available at https://20.http-io.prtest2.cppalliance.org/site/index.html |
438c54e
to
bf3f191
Compare
Antora version: an automated preview of the documentation is available at https://20.http-io.prtest2.cppalliance.org/site/index.html |
@@ -378,8 +396,7 @@ class multipart_form | |||
std::optional<std::uint64_t> file_size; | |||
}; | |||
|
|||
// storage_ containts boundary with extra "--" prefix and postfix. | |||
// This reduces the number of steps needed during serialization. | |||
// boundary with extra "--" prefix and postfix. | |||
std::array<char, 2 + 46 + 2> storage_{ generate_boundary() }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this braced-initialization is going to eventually mess you up
No description provided.