commit 08/10/2025

BarixConnection Activate Deactivate Relays
This commit is contained in:
2025-10-08 16:33:19 +07:00
parent efe243e440
commit 2ad26c3ef6
4 changed files with 215 additions and 5 deletions

View File

@@ -102,4 +102,15 @@ class TCP_Barix_Command_Server {
}
return false
}
/**
* Get Socket by IP address
* @param ip The IP address of the client
* @return Socket if found, null otherwise
*/
fun getSocket(ip: String): Socket? {
return socketMap[ip]
}
}