diff --git a/internal/settings/httpproxy.go b/internal/settings/httpproxy.go index de7be358..306b266a 100644 --- a/internal/settings/httpproxy.go +++ b/internal/settings/httpproxy.go @@ -8,11 +8,11 @@ import ( ) // HTTPProxy contains settings to configure the HTTP proxy. -type HTTPProxy struct { //nolint:maligned - Enabled bool - Port uint16 +type HTTPProxy struct { User string Password string + Port uint16 + Enabled bool Stealth bool Log bool }