1
0
mirror of https://github.com/schollz/croc synced 2024-07-08 11:55:46 +00:00

works on linux?

This commit is contained in:
Zack Scholl 2018-09-24 07:51:56 -07:00
parent 02f4b08929
commit 5397634217

View File

@ -3,7 +3,6 @@ package comm
import (
"bytes"
"fmt"
"log"
"net"
"strconv"
"strings"
@ -95,7 +94,7 @@ func (c Comm) Read() (buf []byte, numBytes int, bs []byte, err error) {
break
}
}
log.Printf("wanted %d and got %d", numBytes, len(buf))
// log.Printf("wanted %d and got %d", numBytes, len(buf))
return
}