mirror of
https://gitcode.com/gitea/gitea.git
synced 2025-06-09 14:19:19 +08:00
go1.16 (#14783)
This commit is contained in:
7
vendor/github.com/gliderlabs/ssh/options.go
generated
vendored
7
vendor/github.com/gliderlabs/ssh/options.go
generated
vendored
@ -42,6 +42,13 @@ func HostKeyFile(filepath string) Option {
|
||||
}
|
||||
}
|
||||
|
||||
func KeyboardInteractiveAuth(fn KeyboardInteractiveHandler) Option {
|
||||
return func(srv *Server) error {
|
||||
srv.KeyboardInteractiveHandler = fn
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
||||
// HostKeyPEM returns a functional option that adds HostSigners to the server
|
||||
// from a PEM file as bytes.
|
||||
func HostKeyPEM(bytes []byte) Option {
|
||||
|
Reference in New Issue
Block a user