mirror of
https://github.com/schollz/croc.git
synced 2024-11-24 08:02:33 +03:00
try fix
This commit is contained in:
parent
42c0240e50
commit
182a9fe2f4
@ -136,10 +136,11 @@ func chanFromConn(conn net.Conn) chan []byte {
|
||||
b := make([]byte, models.TCP_BUFFER_SIZE)
|
||||
n, err := reader.Read(b)
|
||||
if n > 0 {
|
||||
res := make([]byte, n)
|
||||
// Copy the buffer so it doesn't get changed while read by the recipient.
|
||||
copy(res, b[:n])
|
||||
c <- res
|
||||
c <- b
|
||||
// res := make([]byte, n)
|
||||
// // Copy the buffer so it doesn't get changed while read by the recipient.
|
||||
// copy(res, b[:n])
|
||||
// c <- res
|
||||
}
|
||||
if err != nil {
|
||||
c <- nil
|
||||
|
Loading…
Reference in New Issue
Block a user