package
0.0.0-20210112105834-4310ded92bb7
Repository: https://github.com/elwin/transmit2.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

scionftp client

Client package for FTP + GridFTP extension, adapted to the SCION network. Forked from jlaffaye/ftp.

Example

c, err := ftp.Dial("1-ff00:0:110,[127.0.0.1]:4000, 1-ff00:0:110,[127.0.0.1]:2121", ftp.DialWithTimeout(5*time.Second))
if err != nil {
    log.Fatal(err)
}

err = c.Login("admin", "123456")
if err != nil {
    log.Fatal(err)
}

// Do something with the FTP connection

if err := c.Quit(); err != nil {
    log.Fatal(err)
}