You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main.rs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -161,15 +161,15 @@ fn main() {
161
161
)
162
162
.arg(
163
163
Arg::with_name("send_buffer")
164
-
.help("send_buffer, in bytes; affects TCP window-size (only supported on some platforms; if set too small, a 'resource unavailable' error may occur)")
164
+
.help("send_buffer, in bytes(only supported on some platforms; if set too small, a 'resource unavailable' error may occur; affects TCP window-size)")
165
165
.takes_value(true)
166
166
.long("send-buffer")
167
167
.required(false)
168
168
.default_value("0")
169
169
)
170
170
.arg(
171
171
Arg::with_name("receive_buffer")
172
-
.help("receive_buffer, in bytes; affects TCP window-size (only supported on some platforms; if set too small, a 'resource unavailable' error may occur)")
172
+
.help("receive_buffer, in bytes(only supported on some platforms; if set too small, a 'resource unavailable' error may occur; affects TCP window-size)")
0 commit comments