Specify that a server conn is not concurrent safe.

Fixes #128
This commit is contained in:
Julien Laffaye 2019-04-11 17:57:07 +02:00
parent 73b56eeee6
commit 52d3001130

3
ftp.go
View File

@ -27,7 +27,8 @@ const (
) )
// ServerConn represents the connection to a remote FTP server. // ServerConn represents the connection to a remote FTP server.
// It should be protected from concurrent accesses. // A single connection only supports one in-flight data connection.
// It is not safe to be called concurrently.
type ServerConn struct { type ServerConn struct {
options *dialOptions options *dialOptions
conn *textproto.Conn conn *textproto.Conn