Parcourir la source

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 il y a 1 an
Parent
commit
7e12265f00
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  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(())