mirror of
https://gitlab.com/futo-org/fcast.git
synced 2025-06-24 21:25:23 +00:00
Removed buffered input reader.
This commit is contained in:
parent
c4e9303cc3
commit
84c6c42349
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ class TcpListenerService(private val _networkService: NetworkService, private va
|
||||||
|
|
||||||
val bufferSize = 4096
|
val bufferSize = 4096
|
||||||
val buffer = ByteArray(bufferSize)
|
val buffer = ByteArray(bufferSize)
|
||||||
val inputStream = BufferedInputStream(socket.getInputStream())
|
val inputStream = socket.getInputStream()
|
||||||
|
|
||||||
var bytesRead: Int
|
var bytesRead: Int
|
||||||
while (!_stopped) {
|
while (!_stopped) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue