Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions dc/s2n-quic-dc/src/stream/client/tokio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ impl Builder {
///
/// See `SO_SNDBUF` for more information.
///
/// Note that this only applies to sockets that are created by SaltyLib. Any sockets
/// Note that this only applies to sockets that are created by s2n-quic-dc. Any sockets
/// provided by the application will not inherit this value.
pub fn with_send_buffer(mut self, bytes: usize) -> Self {
self.send_buffer = Some(bytes);
Expand All @@ -288,7 +288,7 @@ impl Builder {
///
/// See `SO_RCVBUF` for more information.
///
/// Note that this only applies to sockets that are created by SaltyLib. Any sockets
/// Note that this only applies to sockets that are created by s2n-quic-dc. Any sockets
/// provided by the application will not inherit this value.
pub fn with_recv_buffer(mut self, bytes: usize) -> Self {
self.recv_buffer = Some(bytes);
Expand Down
Loading
Loading