mirror of
https://github.com/schollz/croc.git
synced 2025-10-11 13:21:00 +02:00
try fix
This commit is contained in:
parent
1049e9c8c8
commit
b573f5c853
1 changed files with 1 additions and 1 deletions
|
@ -132,8 +132,8 @@ func chanFromConn(conn net.Conn) chan []byte {
|
|||
reader := bufio.NewReader(conn)
|
||||
|
||||
go func() {
|
||||
b := make([]byte, models.TCP_BUFFER_SIZE)
|
||||
for {
|
||||
b := make([]byte, models.TCP_BUFFER_SIZE)
|
||||
n, err := reader.Read(b)
|
||||
if n > 0 {
|
||||
// c <- b[:n]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue