Sfoglia il codice sorgente

tcp: Wake tx waker after abort()

It is useful to wake once the RST packet has been emitted, so
async callers can wait before dropping the socket.
Matt Johnston 1 anno fa
parent
commit
7e12265f00
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. 5 0
      src/socket/tcp.rs

+ 5 - 0
src/socket/tcp.rs

@@ -2231,6 +2231,11 @@ impl<'a> Socket<'a> {
         if self.state == State::Closed {
             // When aborting a connection, forget about it after sending a single RST packet.
             self.tuple = None;
+            #[cfg(feature = "async")]
+            {
+                // Wake tx now so that async users can wait for the RST to be sent
+                self.tx_waker.wake();
+            }
         }
 
         Ok(())