fix bug of execute prepare stmt

This commit is contained in:
hebo 2019-08-29 20:38:00 +08:00
parent 66dc02ebcb
commit 9019572bd1
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ func initEthernetHandlerFromPacpgo() (handler *pcapgo.EthernetHandle) {
panic(err.Error())
}
_ = handler.SetCaptureLength(1024*1024*10)
_ = handler.SetCaptureLength(65535)
return
}