We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a5a762 commit dcd7947Copy full SHA for dcd7947
src/sys/socket/sockopt.rs
@@ -19,7 +19,7 @@ use std::os::unix::io::RawFd;
19
///
20
/// * `$name:ident`: name of the type you want to implement `SetSockOpt` for.
21
/// * `$level:path` : socket layer, or a `protocol level`: could be *raw sockets*
22
-/// (`lic::SOL_SOCKET`), *ip protocol* (libc::IPPROTO_IP), *tcp protocol* (`libc::IPPROTO_TCP`),
+/// (`libc::SOL_SOCKET`), *ip protocol* (libc::IPPROTO_IP), *tcp protocol* (`libc::IPPROTO_TCP`),
23
/// and more. Please refer to your system manual for more options. Will be passed as the second
24
/// argument (`level`) to the `setsockopt` call.
25
/// * `$flag:path`: a flag name to set. Some examples: `libc::SO_REUSEADDR`, `libc::TCP_NODELAY`,
0 commit comments