blyat multi arch gcc
This commit is contained in:
@ -14,13 +14,14 @@ fun startClient(host: String, address: String, port: Int) = runBlocking {
|
||||
val input = socket.getInputStream()
|
||||
val output = socket.getOutputStream()
|
||||
|
||||
println("Client trying to pair")
|
||||
|
||||
launch {
|
||||
val buffer = ByteArray(32768)
|
||||
println("Client trying to pair")
|
||||
println("Client connected - $host:$port")
|
||||
|
||||
while (true) {
|
||||
val len = tun.input.read(buffer)
|
||||
println("Client connected - $host:$port")
|
||||
|
||||
if (len > 0) {
|
||||
output.write(len shr 8)
|
||||
|
||||
Reference in New Issue
Block a user