Skip to content

Commit 9077762

Browse files
authored
net: expose keepalive option on TcpSocket (#6311)
1 parent 131e7b4 commit 9077762

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tokio/src/net/tcp/socket.rs

+10
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,16 @@ impl TcpSocket {
185185
Ok(TcpSocket { inner })
186186
}
187187

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+
188198
/// Allows the socket to bind to an in-use address.
189199
///
190200
/// Behavior is platform specific. Refer to the target platform's

0 commit comments

Comments
 (0)