浏览代码

Fix a few typos in TCP socket code (NFC).

whitequark 7 年之前
父节点
当前提交
6a096721cc
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2 3
      src/socket/tcp.rs

+ 2 - 3
src/socket/tcp.rs

@@ -334,7 +334,6 @@ impl<'a> TcpSocket<'a> {
         self.remote_last_seq = TcpSeqNumber(0);
         self.remote_last_ack = TcpSeqNumber(0);
         self.remote_win_len  = 0;
-        self.remote_win_len  = 0;
         self.remote_mss      = DEFAULT_MSS;
         self.retransmit.reset();
         self.tx_buffer.clear();
@@ -986,7 +985,7 @@ impl<'a> TcpSocket<'a> {
                 _ => self.remote_last_seq = self.local_seq_no
             }
         } else if self.retransmit.may_send_new(timestamp) {
-            // The retransmit timer has reset, and we can send something new.
+            // The retransmit timer has been reset, and we can send something new.
         } else {
             // We don't have anything to send at this time.
             return Err(Error::Exhausted)
@@ -1091,7 +1090,7 @@ impl<'a> TcpSocket<'a> {
 
             if repr.control == TcpControl::Syn {
                 // First enable the option, without assigning any value, to get a correct
-                // result for (ip_repr:Unspecified).payload_len below.
+                // result for the payload_len field of ip_repr below.
                 repr.max_seg_size = Some(0);
             }