Vladislav Yaroslavlev
|
09f56dede2
|
fix: resolve clippy warnings
Reduce clippy warnings from54 to16 by fixing mechanical issues:
- collapsible_if: collapse nested if-let chains with let-chains
- clone_on_copy: remove unnecessary .clone() on Copy types
- manual_clamp: replace .max().min() with .clamp()
- unnecessary_cast: remove redundant type casts
- collapsible_else_if: flatten else-if chains
- contains_vs_iter_any: replace .iter().any() with .contains()
- unnecessary_closure: replace .or_else(|| x) with .or(x)
- useless_conversion: remove redundant .into() calls
- is_none_or: replace .map_or(true, ...) with .is_none_or(...)
- while_let_loop: convert loop with if-let-break to while-let
Remaining16 warnings are design-level issues (too_many_arguments,
await_holding_lock, type_complexity, new_ret_no_self) that require
architectural changes to fix.
|
2026-02-24 05:57:53 +03:00 |
Alexey
|
8b47fc3575
|
Update defaults.rs
|
2026-02-24 02:12:44 +03:00 |
Alexey
|
122e4729c5
|
Update defaults.rs
|
2026-02-24 00:17:33 +03:00 |
Alexey
|
0e2d42624f
|
ME Pool Hardswap
|
2026-02-24 00:04:12 +03:00 |
Alexey
|
75bfbe6e95
|
Update defaults.rs
|
2026-02-23 16:10:39 +03:00 |
Alexey
|
d8dcbbb61e
|
ME Pool Updater + Soft-staged Reinit w/o Reconcile
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com>
|
2026-02-23 16:04:19 +03:00 |
Alexey
|
d08ddd718a
|
Desync Full Forensics
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com>
|
2026-02-23 15:28:02 +03:00 |
Alexey
|
b5d0564f2a
|
Time-To-Life for TLS Full Certificate
|
2026-02-23 05:47:44 +03:00 |
Alexey
|
6ff29e43d3
|
Middle-End protocol hardening
- Secure framing / hot-path fix: enforced a single length + padding contract across the framing layer. Replaced legacy runtime `len % 4` recovery with strict validation to eliminate undefined behavior paths.
- ME RPC aligned with C reference contract: handshake now includes `flags + sender_pid + peer_pid`. Added negotiated CRC mode (CRC32 / CRC32C) and applied the negotiated mode consistently in read/write paths.
- Sequence fail-fast semantics: immediate connection termination on first sequence mismatch with dedicated counter increment.
- Keepalive reworked to RPC ping/pong: removed raw CBC keepalive frames. Introduced stale ping tracker with proper timeout accounting.
- Route/backpressure observability improvements: increased per-connection route queue to 4096. Added `RouteResult` with explicit failure reasons (NoConn, ChannelClosed, QueueFull) and per-reason counters.
- Direct-DC secure mode-gate relaxation: removed TLS/secure conflict in Direct-DC handshake path.
|
2026-02-23 02:28:00 +03:00 |
Dimasssss
|
b2aaf404e1
|
Add files via upload
|
2026-02-22 01:19:26 +03:00 |
Alexey
|
83fc9d6db3
|
Middle-End Fixes
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com>
|
2026-02-21 03:36:13 +03:00 |
Alexey
|
c9a043d8d5
|
ME Frame too large Fixes
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com>
|
2026-02-21 02:15:10 +03:00 |
artemws
|
0d2958fea7
|
Change metrics whitelist to use IpNetwork
|
2026-02-20 16:03:57 +02:00 |
Alexey
|
5e98b35fb7
|
Drafting Fake-TLS V2
|
2026-02-20 12:48:51 +03:00 |
Alexey
|
e340b716b2
|
Drafting ME Healthcheck
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com>
|
2026-02-19 15:39:30 +03:00 |
Alexey
|
35ae455e2b
|
ME Pool V2
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com>
|
2026-02-19 13:35:56 +03:00 |
Alexey
|
c7bd1c98e7
|
Autofallback on ME-Init
|
2026-02-18 19:50:16 +03:00 |
Alexey
|
df4494c37a
|
New reroute algo + flush() optimized + new IPV6 Parser
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com>
|
2026-02-18 19:08:27 +03:00 |