Added connector and enrollment for mTLS client certificate auto enrollment on game sessions, will MOCK a official tak client behavior when authenticating

This commit is contained in:
2026-03-24 16:55:05 -03:00
parent f88c02a7aa
commit 61ba9f6d63
4 changed files with 369 additions and 0 deletions

6
src/tcp/tls/mod.rs Normal file
View File

@@ -0,0 +1,6 @@
pub mod artifacts;
mod connector;
mod enrollment;
pub use connector::connect_mtls;
pub use enrollment::enroll_and_connect;