mirror of
https://github.com/go-gitea/gitea
synced 2025-07-04 17:47:19 +00: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