浏览代码

Merge #642

642: fix return value of `nagle_enable` r=Dirbaio a=stlankes

The old implementation returns the wrong value (ACK delay duration) and doesn't describe if the Nagle algorithm is enabled or not.

Co-authored-by: Stefan Lankes <slankes@eonerc.rwth-aachen.de>
bors[bot] 2 年之前
父节点
当前提交
4db073f373
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/socket/tcp.rs

+ 2 - 2
src/socket/tcp.rs

@@ -541,8 +541,8 @@ impl<'a> Socket<'a> {
     /// Return whether Nagle's Algorithm is enabled.
     ///
     /// See also the [set_nagle_enabled](#method.set_nagle_enabled) method.
-    pub fn nagle_enabled(&self) -> Option<Duration> {
-        self.ack_delay
+    pub fn nagle_enabled(&self) -> bool {
+        self.nagle
     }
 
     /// Return the current window field value, including scaling according to RFC 1323.