Procházet zdrojové kódy

rename the field to keep lint happy

Shelikhoo před 4 roky
rodič
revize
d6abddc7f5
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      infra/conf/transport_internet.go

+ 2 - 2
infra/conf/transport_internet.go

@@ -390,7 +390,7 @@ type SocketConfig struct {
 	TProxy              string `json:"tproxy"`
 	AcceptProxyProtocol bool   `json:"acceptProxyProtocol"`
 
-	TcpKeepAliveInterval uint32 `json:"tcpKeepAliveInterval"`
+	TCPKeepAliveInterval uint32 `json:"tcpKeepAliveInterval"`
 }
 
 // Build implements Buildable.
@@ -418,7 +418,7 @@ func (c *SocketConfig) Build() (*internet.SocketConfig, error) {
 		Tfo:                  tfoSettings,
 		Tproxy:               tproxy,
 		AcceptProxyProtocol:  c.AcceptProxyProtocol,
-		TcpKeepAliveInterval: c.TcpKeepAliveInterval,
+		TcpKeepAliveInterval: c.TCPKeepAliveInterval,
 	}, nil
 }