Alexey
6efcbe9bbf
Update README.md
2026-02-25 02:05:32 +03:00
Alexey
e5ad27e26e
Merge pull request #237 from Dimasssss/main
...
Update config.toml
2026-02-25 01:50:19 +03:00
Dimasssss
53ec96b040
Update config.toml
2026-02-25 01:37:55 +03:00
Alexey
e9a4281015
Delete proxy-secret
...
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com>
2026-02-25 00:31:12 +03:00
Alexey
866c2fbd96
Update Cargo.toml
2026-02-25 00:29:58 +03:00
Alexey
086c85d851
Merge pull request #236 from telemt/flow-mep
...
Flow mep
2026-02-25 00:29:07 +03:00
Alexey
ce4e21c996
Merge pull request #235 from telemt/bump
...
Update Cargo.toml
2026-02-25 00:28:40 +03:00
Alexey
25ab79406f
Update Cargo.toml
2026-02-25 00:28:26 +03:00
Alexey
7538967d3c
ME Hardswap being softer
...
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com>
2026-02-24 23:36:33 +03:00
Alexey
4a95f6d195
ME Pool Health + Rotation
...
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com>
2026-02-24 22:59:59 +03:00
Alexey
7d7ef84868
Merge pull request #232 from Dimasssss/main
...
Update config.toml
2026-02-24 22:28:31 +03:00
Dimasssss
692d9476b9
Update config.toml
2026-02-24 22:11:15 +03:00
Dimasssss
b00b87032b
Update config.toml
2026-02-24 22:10:49 +03:00
Alexey
ee07325eba
Update Cargo.toml
2026-02-24 21:12:44 +03:00
Alexey
1b3a17aedc
Merge pull request #230 from badcdd/patch-1
...
Fix similar username in discovered items in zabbix template
2026-02-24 19:44:02 +03:00
Alexey
6fdb568381
Merge pull request #229 from Dimasssss/main
...
Update config.toml
2026-02-24 19:43:44 +03:00
Alexey
bb97ff0df9
Merge pull request #228 from telemt/flow-mep
...
ME Soft Reinit tuning
2026-02-24 19:43:13 +03:00
badcdd
b1cd7f9727
fix similar username in discovered items
2026-02-24 18:59:37 +03:00
Dimasssss
c13c1cf7e3
Update config.toml
2026-02-24 18:39:46 +03:00
Alexey
d2f08fb707
ME Soft Reinit tuning
...
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com>
2026-02-24 18:19:39 +03:00
Alexey
2356ae5584
Merge pull request #223 from vladon/fix/clippy-warnings
...
fix: resolve clippy warnings
2026-02-24 10:15:47 +03:00
Alexey
429fa63c95
Merge pull request #224 from Dimasssss/main
...
Update config.toml
2026-02-24 10:14:30 +03:00
Dimasssss
50e15896b3
Update config.toml
...
2 раза добавил параметр me_reinit_drain_timeout_secs
2026-02-24 09:02:47 +03:00
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
d9ae7bb044
Merge pull request #222 from vladon/fix/unused-import-warning
...
fix: add #[cfg(test)] to unused ProxyError import
2026-02-24 04:37:00 +03:00
Vladislav Yaroslavlev
d6214c6bbf
fix: add #[cfg(test)] to unused ProxyError import
...
The ProxyError import in tls.rs is only used in test code
(validate_server_hello_structure function), so guard it with
#[cfg(test)] to eliminate the unused import warning.
2026-02-24 04:20:30 +03:00
Alexey
3d3ddd37d7
Merge pull request #221 from vladon/fix/test-compilation-errors
...
fix: add missing imports in test code
2026-02-24 04:08:01 +03:00
Vladislav Yaroslavlev
1d71b7e90c
fix: add missing imports in test code
...
- Add ProxyError import and fix Result type annotation in tls.rs
- Add Arc import in stats/mod.rs test module
- Add BodyExt import in metrics.rs test module
These imports were missing causing compilation failures in
cargo test --release with 10 errors.
2026-02-24 04:07:14 +03:00
Alexey
8ba7bc9052
Merge pull request #219 from Dimasssss/main
...
Update config.toml
2026-02-24 03:54:54 +03:00
Alexey
3397d82924
Apply suggestion from @axkurcom
2026-02-24 03:54:17 +03:00
Alexey
78c45626e1
Merge pull request #220 from vladon/fix-compiler-warnings
...
fix: eliminate all compiler warnings
2026-02-24 03:49:46 +03:00
Vladislav Yaroslavlev
68c3abee6c
fix: eliminate all compiler warnings
...
- Remove unused imports across multiple modules
- Add #![allow(dead_code)] for public API items preserved for future use
- Add #![allow(deprecated)] for rand::Rng::gen_range usage
- Add #![allow(unused_assignments)] in main.rs
- Add #![allow(unreachable_code)] in network/stun.rs
- Prefix unused variables with underscore (_ip_tracker, _prefer_ipv6)
- Fix unused_must_use warning in tls_front/cache.rs
This ensures clean compilation without warnings while preserving
public API items that may be used in the future.
2026-02-24 03:40:59 +03:00
Dimasssss
267c8bf2f1
Update config.toml
2026-02-24 03:03:19 +03:00
Alexey
d38d7f2bee
Update release.yml
2026-02-24 02:31:12 +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
08138451d8
Update types.rs
2026-02-24 00:15:37 +03:00
Alexey
267619d276
Merge pull request #218 from telemt/mep-naughty
...
Update types.rs
2026-02-24 00:08:29 +03:00
Alexey
f710a2192a
Update types.rs
2026-02-24 00:08:03 +03:00
Alexey
b40eed126d
Merge pull request #217 from telemt/flow-mep
...
ME Pool Hardswap
2026-02-24 00:06:38 +03:00
Alexey
0e2d42624f
ME Pool Hardswap
2026-02-24 00:04:12 +03:00
Alexey
1f486e0df2
Update README.md
2026-02-23 21:30:22 +03:00
Alexey
a4af254107
Merge pull request #216 from Dimasssss/main
...
Update config.toml
2026-02-23 21:23:56 +03:00
Dimasssss
3f0c53b010
Update config.toml
2026-02-23 21:10:53 +03:00
Dimasssss
890bd98b17
Update types.rs
2026-02-23 21:10:25 +03:00
Dimasssss
02cfe1305c
Update config.toml
2026-02-23 20:50:39 +03:00
Dimasssss
81843cc56c
Update types.rs
...
По умолчанию использовало me_reconnect_max_concurrent_per_dc = 4
2026-02-23 20:46:56 +03:00
Alexey
f86ced8e62
Rename AGENTS_SYSTEM_PROMT.md to AGENTS.md
2026-02-23 19:43:34 +03:00
Alexey
e2e471a78c
Delete AGENTS.md
2026-02-23 19:43:03 +03:00
Alexey
9aed6c8631
Update Cargo.toml
2026-02-23 18:47:26 +03:00