[DATA-970] Increase buffer size in FTP scanner (#279)

这个提交包含在:
grace-murphy 2020-10-21 14:25:43 -04:00 提交者 GitHub
父节点 dae700ea10
当前提交 8aa9230e29
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -68,7 +68,7 @@ type Scanner struct {
type Connection struct {
// buffer is a temporary buffer for sending commands -- so, never interleave
// sendCommand calls on a given connection
buffer [1024]byte
buffer [10000]byte
config *Flags
results ScanResults
conn net.Conn