Procházet zdrojové kódy

Remove accidentally committed change.

whitequark před 8 roky
rodič
revize
22772f07df
1 změnil soubory, kde provedl 0 přidání a 1 odebrání
  1. 0 1
      src/socket/tcp.rs

+ 0 - 1
src/socket/tcp.rs

@@ -717,7 +717,6 @@ impl<'a> TcpSocket<'a> {
             (_, TcpRepr { seq_number, .. }) => {
                 let next_remote_seq = self.remote_seq_no + self.rx_buffer.len();
                 if seq_number > next_remote_seq {
-                    self.retransmit.reset();
                     net_trace!("[{}]{}:{}: unacceptable SEQ ({} not in {}..)",
                                self.debug_id, self.local_endpoint, self.remote_endpoint,
                                seq_number, next_remote_seq);