From 20fafdca65642273eccbfe5df257e780c308812c Mon Sep 17 00:00:00 2001 From: Larvan2 <78135608+Larvan2@users.noreply.github.com> Date: Mon, 18 Sep 2023 19:42:08 +0800 Subject: [PATCH] chore: cleanup code --- config/config.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/config/config.go b/config/config.go index a2e64026..66815274 100644 --- a/config/config.go +++ b/config/config.go @@ -63,7 +63,6 @@ type General struct { EBpf EBpf `json:"-"` GlobalClientFingerprint string `json:"global-client-fingerprint"` GlobalUA string `json:"global-ua"` - KeepAliveInterval int `json:"keep-alive-interval"` } // Inbound config @@ -646,7 +645,6 @@ func parseGeneral(cfg *RawConfig) (*General, error) { EBpf: cfg.EBpf, GlobalClientFingerprint: cfg.GlobalClientFingerprint, GlobalUA: cfg.GlobalUA, - KeepAliveInterval: cfg.KeepAliveInterval, }, nil }