Skip to content

Commit

Permalink
use utf8 default
Browse files Browse the repository at this point in the history
  • Loading branch information
zeast committed Jan 9, 2017
1 parent 95f4fe9 commit bb08d64
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions ftp.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@ func DialTimeout(addr string, timeout time.Duration) (*ServerConn, error) {
return nil, err
}

err = c.setUTF8()
if err != nil {
c.Quit()
return nil, err
}

return c, nil
}

Expand Down Expand Up @@ -165,6 +171,24 @@ func (c *ServerConn) feat() error {
return nil
}

// setUTF8 issues an "OPTS UTF8 ON" command.
func (c *ServerConn) setUTF8() error {
if _, ok := c.features["UTF8"]; !ok {
return nil
}

code, message, err := c.cmd(-1, "OPTS UTF8 ON")
if err != nil {
return err
}

if code != StatusCommandOK {
return errors.New(message)
}

return nil
}

// epsv issues an "EPSV" command to get a port number for a data connection.
func (c *ServerConn) epsv() (port int, err error) {
_, line, err := c.cmd(StatusExtendedPassiveMode, "EPSV")
Expand Down

0 comments on commit bb08d64

Please sign in to comment.