From aa89e51852d6b4af4956c5a9f2ff35b1cd5fccf4 Mon Sep 17 00:00:00 2001 From: Ezequiel Moreno Date: Wed, 17 Feb 2016 22:54:24 -0300 Subject: [PATCH] make timeout public --- ftp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftp.go b/ftp.go index 8b19f06..6ceb966 100644 --- a/ftp.go +++ b/ftp.go @@ -23,7 +23,7 @@ const ( ) type Conf struct { - timeout time.Duration + Timeout time.Duration } // ServerConn represents the connection to a remote FTP server.