- Add Connected bool field to vfs.Entry and RemoteMount - Track connection status in sshState.connectedHosts - Show status icon (connected/disconnected) in pane header when browsing remote host - Async SSH connection test with cancel support for Add Host dialog - Colored labels and styled help text in SSH dialogs - Confirmation dialog when deleting manually-added SSH hosts
23 lines
424 B
Go
23 lines
424 B
Go
//go:build gofuzz
|
|
// +build gofuzz
|
|
|
|
package sftp
|
|
|
|
import "bytes"
|
|
|
|
type sinkfuzz struct{}
|
|
|
|
func (*sinkfuzz) Close() error { return nil }
|
|
func (*sinkfuzz) Write(p []byte) (int, error) { return len(p), nil }
|
|
|
|
var devnull = &sinkfuzz{}
|
|
|
|
// To run: go-fuzz-build && go-fuzz
|
|
func Fuzz(data []byte) int {
|
|
c, err := NewClientPipe(bytes.NewReader(data), devnull)
|
|
if err != nil {
|
|
return 0
|
|
}
|
|
c.Close()
|
|
return 1
|
|
}
|