From 9019572bd11928574a164122fdbafcaab1dbfb0d Mon Sep 17 00:00:00 2001 From: hebo Date: Thu, 29 Aug 2019 20:38:00 +0800 Subject: [PATCH] fix bug of execute prepare stmt --- capture/network.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capture/network.go b/capture/network.go index e51be5e..efd7e36 100644 --- a/capture/network.go +++ b/capture/network.go @@ -71,7 +71,7 @@ func initEthernetHandlerFromPacpgo() (handler *pcapgo.EthernetHandle) { panic(err.Error()) } - _ = handler.SetCaptureLength(1024*1024*10) + _ = handler.SetCaptureLength(65535) return }