diff --git a/outputs.go b/outputs.go index 7a5d903..9a9c389 100644 --- a/outputs.go +++ b/outputs.go @@ -15,7 +15,6 @@ func setupOutputs() { MaskSize6: util.GeneralFlags.MaskSize6, PacketLimit: util.GeneralFlags.PacketLimit, ServerName: util.GeneralFlags.ServerName, - PrintStatsDelay: util.GeneralFlags.PrintStatsDelay, SkipTlsVerification: util.GeneralFlags.SkipTLSVerification, } log.Info("Creating the dispatch Channel") diff --git a/types/types.go b/types/types.go index 5e024d8..273bceb 100644 --- a/types/types.go +++ b/types/types.go @@ -25,7 +25,6 @@ type GeneralConfig struct { MaskSize6 int PacketLimit int ServerName string - PrintStatsDelay time.Duration SkipTlsVerification bool }