Sfoglia il codice sorgente

Do not clear remote_last_ts in TcpSocket::set_timeout().

After this change, if an 1s timeout is set on a socket that received
no packet for 2s, it will be instantly aborted, which seems
more reasonable. Also, this makes the `self.remote_last_ts.is_none()`
branch in TcpSocket::dispatch() actually behave as described.
whitequark 7 anni fa
parent
commit
c43446ff3a
1 ha cambiato i file con 1 aggiunte e 2 eliminazioni
  1. 1 2
      src/socket/tcp.rs

+ 1 - 2
src/socket/tcp.rs

@@ -280,8 +280,7 @@ impl<'a> TcpSocket<'a> {
     ///   * After enabling [keep-alive](#method.set_keep_alive), the remote endpoint exceeds
     ///     the specified duration between any two packets it sends.
     pub fn set_timeout(&mut self, duration: Option<u64>) {
-        self.timeout = duration;
-        self.remote_last_ts = None;
+        self.timeout = duration
     }
 
     /// Return the keep-alive interval.