Alexey
13f86062f4
BINDTODEVICE for Direct Upstreams by #683
...
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com >
2026-04-14 18:32:06 +03:00
Alexey
8267149b53
Merge pull request #695 from vladon/fix/windows-run-inner-issue-690
...
fix(maestro): restore Windows build after cfg split (fixes #690 )
2026-04-14 18:04:56 +03:00
Alexey
30fab00bfd
Merge branch 'flow' into fix/windows-run-inner-issue-690
2026-04-14 18:01:18 +03:00
Vladislav Yaroslavlev
abff2fd7fe
fix(maestro): restore Windows build (missing run_inner)
...
The full runtime entry was gated with #[cfg(unix)] while run() still called
run_inner() on non-Unix targets, causing E0425 on Windows (issue #690 ).
Extract shared pipeline into run_telemt_core with a post-bind hook for Unix
privilege dropping; provide cfg-split run_inner wrappers.
Fixes https://github.com/telemt/telemt/issues/690
Made-with: Cursor
2026-04-13 00:21:19 +03:00
Alexey
0b580eccd3
Merge pull request #693 from telemt/flow-timeouts
...
Configureable mask timeouts
2026-04-12 19:51:59 +03:00
Alexey
70b63e4e0b
Merge pull request #623 from Batmaev/feat-config-mask-timeouts
...
Configure mask timeouts
2026-04-12 19:16:33 +03:00
Alexey
5f5a3e3fa0
Merge pull request #673 from Artymediys/main
...
docs: align LTO notes, API docs, and Fake-TLS guidance
2026-04-12 19:15:45 +03:00
Alexey
f9e54ee739
Merge pull request #688 from TWRoman/main
...
[docs]Update CONFIG-PARAMS
2026-04-12 15:48:43 +03:00
Roman
d477d6ee29
Update CONFIG_PARAMS.ru.md
...
Corrected override_dc and default_dc descriptions.
2026-04-12 13:54:22 +03:00
TWRoman
1383dfcbb1
[docs]Update CONFIG-PARAMS
2026-04-12 12:37:38 +03:00
Artymediys
107a7cc758
Merge branch 'main' into main
2026-04-12 12:11:07 +03:00
Artymediys
4f3193fdaa
Merge branch 'main' into main
2026-04-12 12:11:07 +03:00
Artymediys
d6be691c67
Merge branch 'main' into main
2026-04-12 12:10:26 +03:00
Artymediys
0b0be07a9c
docs: align LTO notes, API docs, and Fake-TLS guidance
2026-04-12 12:02:14 +03:00
Batmaev
26c40092f3
rm hardcoded mask timeouts
2026-04-12 10:46:18 +03:00
Alexey
192a852034
Merge pull request #687 from telemt/flow-flap
...
Endpoint handling during single endpoint outages
2026-04-12 10:43:46 +03:00
Alexey
16c7a63fbc
Fix test for single-endpoint DC
2026-04-12 10:38:22 +03:00
Alexey
69a73d5fec
Merge pull request #647 from miniusercoder/flow
...
fix(me): stabilize single-endpoint DC writer recovery and floor behavior
2026-04-12 10:19:25 +03:00
Alexey
7b1aa46753
Deleting API and CONFIG_PARAMS
2026-04-12 10:19:06 +03:00
Alexey
a728c727bc
Merge pull request #669 from mammuthus/chore/update-grafana-dashboard-json
...
Updated and extended grafana dashboard
2026-04-11 20:12:28 +03:00
Alexey
d23ce4a184
Merge pull request #671 from miniusercoder/xray-double-hop
...
add documentation for Xray double hop setup
2026-04-11 20:12:00 +03:00
Alexey
e48e1b141d
Merge pull request #686 from Misha20062006/patch-1
...
Rename TememtAPI to TelemtAPI (fix typo)
2026-04-11 20:09:24 +03:00
Misha20062006
82da541f9c
Rename TememtAPI to TelemtAPI (fix typo)
...
Fixed a typo in class names and exceptions where 'Tememt' was used instead of 'Telemt'.
2026-04-11 17:35:25 +03:00
Alexey
6d5a1a29df
Merge pull request #677 from xaosproxy/feat/rst-on-close
...
feat: add configurable RST-on-close mode for client sockets
2026-04-11 10:35:16 +03:00
Alexey
026ca5cc1d
Merge pull request #678 from avbor/main
...
Fixed link to quick start guide
2026-04-11 10:34:05 +03:00
Alexey
b11dec7f91
Update FUNDING.yml
2026-04-10 20:37:09 +03:00
Alexey
edd1405562
Update FUNDING.yml
2026-04-10 20:34:43 +03:00
brekotis
45dd7485a9
Create FUNDING.yml
2026-04-10 15:49:29 +03:00
brekotis
901cf11c51
Add donation section to README.md
2026-04-10 15:48:24 +03:00
miniusercoder
7acc76b422
fix quick start link in xray double hop
2026-04-10 13:45:53 +03:00
Alexey
227a64ef06
Update CODE_OF_CONDUCT.md
2026-04-10 13:17:51 +03:00
Alexander
6748ed920e
Update VPS_DOUBLE_HOP.ru.md
2026-04-10 11:53:35 +03:00
Alexander
303b273c77
Update VPS_DOUBLE_HOP.en.md
2026-04-10 11:52:58 +03:00
Alexander
3bcc129b8d
Fix link in quick start
2026-04-10 11:17:17 +03:00
Alexander
3ffbd294d2
Fix link to quick start
2026-04-10 11:16:41 +03:00
sintanial
ddeda8d914
feat: add configurable RST-on-close mode for client sockets
...
Add `rst_on_close` config option (off/errors/always) to control
SO_LINGER(0) behaviour on accepted TCP connections.
- `off` (default): normal FIN on all closes, no behaviour change.
- `errors`: SO_LINGER(0) set on accept, cleared after successful
handshake auth. Pre-handshake failures (scanners, DPI probes,
timeouts) send RST instead of FIN, eliminating FIN-WAIT-1 and
orphan socket accumulation. Authenticated relay sessions still
close gracefully with FIN.
- `always`: SO_LINGER(0) on accept, never cleared — all closes
send RST regardless of handshake outcome.
2026-04-10 05:01:38 +03:00
Alexey
17fd01a2c4
Update CODE_OF_CONDUCT.md
2026-04-09 23:27:16 +03:00
Alexey
8ed43a562c
Update CODE_OF_CONDUCT.md
2026-04-09 23:25:19 +03:00
Alexey
fd6243b6cc
Update CODE_OF_CONDUCT.md
2026-04-09 23:21:37 +03:00
Alexey
44127c6f96
Update CODE_OF_CONDUCT.md
2026-04-09 23:21:21 +03:00
Alexey
a0c7a9e62c
Update CODE_OF_CONDUCT.md
2026-04-09 23:17:06 +03:00
Alexey
d7af1cc206
Update CODE_OF_CONDUCT.md
2026-04-09 23:07:58 +03:00
Alexey
f8e22970c1
Merge pull request #670 from TWRoman/main
...
[docs] Update CONFIG-PARAMS and README
2026-04-09 21:55:47 +03:00
Roman
792f626336
Update README.ru.md
2026-04-09 21:53:08 +03:00
Roman
c5c98bb7fa
Update README.ru.md
2026-04-09 21:46:33 +03:00
Roman
6102280345
Update README.ru.md
2026-04-09 21:45:30 +03:00
Roman
177f0f0325
Update README.ru.md
2026-04-09 21:30:34 +03:00
Roman
abcce12368
Merge branch 'main' into main
2026-04-09 21:26:40 +03:00
Alexey
31cbf31491
Update README.md
2026-04-09 21:18:52 +03:00
Alexey
f479ecd1ad
Update README.md
2026-04-09 21:14:42 +03:00