Skip to content

Commit b1245b8

Browse files
authored
feat(s2n-quic-dc): implement server tokio builder (#2744)
1 parent d4561ed commit b1245b8

File tree

2 files changed

+497
-2
lines changed

2 files changed

+497
-2
lines changed

dc/s2n-quic-dc/src/stream/client/tokio.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ impl Builder {
277277
///
278278
/// See `SO_SNDBUF` for more information.
279279
///
280-
/// Note that this only applies to sockets that are created by SaltyLib. Any sockets
280+
/// Note that this only applies to sockets that are created by s2n-quic-dc. Any sockets
281281
/// provided by the application will not inherit this value.
282282
pub fn with_send_buffer(mut self, bytes: usize) -> Self {
283283
self.send_buffer = Some(bytes);
@@ -288,7 +288,7 @@ impl Builder {
288288
///
289289
/// See `SO_RCVBUF` for more information.
290290
///
291-
/// Note that this only applies to sockets that are created by SaltyLib. Any sockets
291+
/// Note that this only applies to sockets that are created by s2n-quic-dc. Any sockets
292292
/// provided by the application will not inherit this value.
293293
pub fn with_recv_buffer(mut self, bytes: usize) -> Self {
294294
self.recv_buffer = Some(bytes);

0 commit comments

Comments
 (0)