forked from forgejo/forgejo
go1.16 (#14783)
This commit is contained in:
parent
030646eea4
commit
47f6a4ec3f
947 changed files with 26119 additions and 7062 deletions
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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue