We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
is_connection_open
1 parent 7a1164b commit 42eb2eeCopy full SHA for 42eb2ee
CHANGELOG.md
@@ -8,7 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
9
## [Unreleased]
10
11
-(no changes yet)
+### tacacs-plus
12
+
13
+#### Fixed
14
15
+- Use `_` instead of range pattern to prevent breakage on older Rust versions (<=1.74)
16
17
## [0.3.1] - 2024-09-11
18
tacacs-plus/src/inner.rs
@@ -272,7 +272,7 @@ where
272
273
// if there's data still available, the connection is still open, although
274
// this shouldn't happen in the context of TACACS+
275
- Ok(1..) => Ok(true),
+ Ok(_) => Ok(true),
276
},
277
278
// nothing ready to read -> connection is still open
0 commit comments