GengTeng
GengTeng
**描述(Description)** 1. SRS版本(Version): `4.0` 1. SRS的日志如下(Log): ``` [2022-02-21 02:16:20.381][Trace][1][5n0z5y32] DTLS: State Passive RECV, done=0, arq=0/0, r0=1, r1=0, len=155, cnt=22, size=142, hs=1 [2022-02-21 02:16:20.384][Trace][1][5n0z5y32] DTLS: State Passive SEND, done=0, arq=0/0, r0=-1,...
add module: * https://github.com/gengteng/inventory
Implemented `get_keepalive_values` method to parse `Keep-Alive` header, resolving a `TODO` in the codebase.
Replaced custom `request_summary` with idiomatic `Debug` implementations for `Session` and its variants. This refactor makes the codebase more aligned with Rust's conventions and simplifies debugging.
Hello, While exploring the source code of the pingora project, I noticed that the organization of modules often involves the use of a directory with a single mod.rs file for...
This PR simplifies the `Server::new` function interface by allowing direct passing of `Opt` or `None` without the need to wrap with `Some`. This enhancement makes the API more ergonomic and...
Hi, In this PR, I've tackled two `TODO` items related to our server's signal handling for shutdown and upgrade processes: 1. **Centralized Signal Listening**: Introduced a function to listen for...
### HA版本 2024.3.3 ### 集成版本 0.3.18 ### 设备类型及型号 Water Drinking Appliance 6320882A (425) ### 使用的App 美的美居 ### 问题详细描述 所有额外传感器都不可用。 ### The logs 7021372841026] Status update: {'available': False} 2024-03-25 15:29:05.580 DEBUG...
Implemented `QueryResultOwned` to solve lifetime issues encountered with streaming query results in asynchronous contexts. This type facilitates creating streams with `'static` lifetimes, enabling easier integration into async workflows and structures...
请问是否考虑将 ReturnT 的字段全加上 final 使之成为 immutable 的,可以安全的在并发场景下使用,然后通过静态工厂和建造者模式来实现方便的构造。比如: ```Java public class ReturnT implements Serializable { // 原有的静态成员已经是 immutable 的了,不会被误用 public static final ReturnT SUCCESS = new ReturnT(null); public static final ReturnT...