mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
103 lines
5.4 KiB
Go
103 lines
5.4 KiB
Go
package fields
|
|
|
|
var FieldsNameFormattedMap = map[NormalizedOptionName]string{
|
|
"acceptenv": "AcceptEnv",
|
|
"addressfamily": "AddressFamily",
|
|
"allowagentforwarding": "AllowAgentForwarding",
|
|
"allowgroups": "AllowGroups",
|
|
"allowstreamlocalforwarding": "AllowStreamLocalForwarding",
|
|
"allowtcpforwarding": "AllowTcpForwarding",
|
|
"allowusers": "AllowUsers",
|
|
"authenticationmethods": "AuthenticationMethods",
|
|
"authorizedkeyscommand": "AuthorizedKeysCommand",
|
|
"authorizedkeyscommanduser": "AuthorizedKeysCommandUser",
|
|
"authorizedkeysfile": "AuthorizedKeysFile",
|
|
"authorizedprincipalscommand": "AuthorizedPrincipalsCommand",
|
|
"authorizedprincipalscommanduser": "AuthorizedPrincipalsCommandUser",
|
|
"authorizedprincipalsfile": "AuthorizedPrincipalsFile",
|
|
"banner": "Banner",
|
|
"casignaturealgorithms": "CASignatureAlgorithms",
|
|
"channeltimeout": "ChannelTimeout",
|
|
"chrootdirectory": "ChrootDirectory",
|
|
"ciphers": "Ciphers",
|
|
"clientalivecountmax": "ClientAliveCountMax",
|
|
"clientaliveinterval": "ClientAliveInterval",
|
|
"compression": "Compression",
|
|
"denygroups": "DenyGroups",
|
|
"denyusers": "DenyUsers",
|
|
"disableforwarding": "DisableForwarding",
|
|
"exposeauthinfo": "ExposeAuthInfo",
|
|
"fingerprinthash": "FingerprintHash",
|
|
"forcecommand": "ForceCommand",
|
|
"gatewayports": "GatewayPorts",
|
|
"gssapiauthentication": "GSSAPIAuthentication",
|
|
"gssapicleanupcredentials": "GSSAPICleanupCredentials",
|
|
"gssapistrictacceptorcheck": "GSSAPIStrictAcceptorCheck",
|
|
"hostbasedacceptedalgorithms": "HostbasedAcceptedAlgorithms",
|
|
"hostbasedauthentication": "HostbasedAuthentication",
|
|
"hostbasedusesnamefrompacketonly": "HostbasedUsesNameFromPacketOnly",
|
|
"hostcertificate": "HostCertificate",
|
|
"hostkey": "HostKey",
|
|
"hostkeyagent": "HostKeyAgent",
|
|
"hostkeyalgorithms": "HostKeyAlgorithms",
|
|
"ignorerhosts": "IgnoreRhosts",
|
|
"ignoreuserknownhosts": "IgnoreUserKnownHosts",
|
|
"include": "Include",
|
|
"ipqos": "IPQoS",
|
|
"kbdinteractiveauthentication": "KbdInteractiveAuthentication",
|
|
"kerberosauthentication": "KerberosAuthentication",
|
|
"kerberosgetafstoken": "KerberosGetAFSToken",
|
|
"kerberosorlocalpasswd": "KerberosOrLocalPasswd",
|
|
"kerberosticketcleanup": "KerberosTicketCleanup",
|
|
"kexalgorithms": "KexAlgorithms",
|
|
"listenaddress": "ListenAddress",
|
|
"logingracetime": "LoginGraceTime",
|
|
"loglevel": "LogLevel",
|
|
"logverbose": "LogVerbose",
|
|
"macs": "MACs",
|
|
"match": "Match",
|
|
"maxauthtries": "MaxAuthTries",
|
|
"maxsessions": "MaxSessions",
|
|
"maxstartups": "MaxStartups",
|
|
"modulifile": "ModuliFile",
|
|
"passwordauthentication": "PasswordAuthentication",
|
|
"permitemptypasswords": "PermitEmptyPasswords",
|
|
"permitlisten": "PermitListen",
|
|
"permitopen": "PermitOpen",
|
|
"permitrootlogin": "PermitRootLogin",
|
|
"permittty": "PermitTTY",
|
|
"permittunnel": "PermitTunnel",
|
|
"permituserenvironment": "PermitUserEnvironment",
|
|
"permituserrc": "PermitUserRC",
|
|
"persourcemaxstartups": "PerSourceMaxStartups",
|
|
"persourcenetblocksize": "PerSourceNetBlockSize",
|
|
"pidfile": "PidFile",
|
|
"port": "Port",
|
|
"printlastlog": "PrintLastLog",
|
|
"printmotd": "PrintMotd",
|
|
"pubkeyacceptedalgorithms": "PubkeyAcceptedAlgorithms",
|
|
"pubkeyauthoptions": "PubkeyAuthOptions",
|
|
"pubkeyauthentication": "PubkeyAuthentication",
|
|
"rekeylimit": "RekeyLimit",
|
|
"requiredrsasize": "RequiredRSASize",
|
|
"revokedkeys": "RevokedKeys",
|
|
"rdomain": "RDomain",
|
|
"securitykeyprovider": "SecurityKeyProvider",
|
|
"setenv": "SetEnv",
|
|
"streamlocalbindmask": "StreamLocalBindMask",
|
|
"streamlocalbindunlink": "StreamLocalBindUnlink",
|
|
"strictmodes": "StrictModes",
|
|
"subsystem": "Subsystem",
|
|
"syslogfacility": "SyslogFacility",
|
|
"tcpkeepalive": "TCPKeepAlive",
|
|
"trustedusercakeys": "TrustedUserCAKeys",
|
|
"unusedconnectiontimeout": "UnusedConnectionTimeout",
|
|
"usedns": "UseDNS",
|
|
"usepam": "UsePAM",
|
|
"versionaddendum": "VersionAddendum",
|
|
"x11displayoffset": "X11DisplayOffset",
|
|
"x11forwarding": "X11Forwarding",
|
|
"x11uselocalhost": "X11UseLocalhost",
|
|
"xauthlocation": "XAuthLocation",
|
|
}
|