Обновить src/main/kotlin/Client.kt

This commit is contained in:
2026-05-28 00:31:00 +03:00
parent 24563b79d4
commit 198aca3c76

View File

@ -13,7 +13,7 @@ fun startClient(host: String, address: String, port: Int, tun: String) = runBloc
println("Client trying to connect - $host:$port") println("Client trying to connect - $host:$port")
val socket = Socket(host, port) val socket = Socket(host, port)
println("Client trying connected - $host:$port") println("Client connected - $host:$port")
launch(Dispatchers.IO) { launch(Dispatchers.IO) {
try { try {