File tree Expand file tree Collapse file tree 2 files changed +497
-2
lines changed
dc/s2n-quic-dc/src/stream Expand file tree Collapse file tree 2 files changed +497
-2
lines changed Original file line number Diff line number Diff 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) ;
You can’t perform that action at this time.
0 commit comments