We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
TcpSocket
1 parent 131e7b4 commit 9077762Copy full SHA for 9077762
tokio/src/net/tcp/socket.rs
@@ -185,6 +185,16 @@ impl TcpSocket {
185
Ok(TcpSocket { inner })
186
}
187
188
+ /// Sets value for the `SO_KEEPALIVE` option on this socket.
189
+ pub fn set_keepalive(&self, keepalive: bool) -> io::Result<()> {
190
+ self.inner.set_keepalive(keepalive)
191
+ }
192
+
193
+ /// Gets the value of the `SO_KEEPALIVE` option on this socket.
194
+ pub fn keepalive(&self) -> io::Result<bool> {
195
+ self.inner.keepalive()
196
197
198
/// Allows the socket to bind to an in-use address.
199
///
200
/// Behavior is platform specific. Refer to the target platform's
0 commit comments