aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 473fffb2f..02f9a2ac8 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -110,8 +110,13 @@
#define NIFLAGS NI_NUMERICHOST | NI_NUMERICSERV
#endif
+#ifdef __SYMBIAN32__
+/* Symbian OS panics when given a timeout much greater than 1/2 hour */
+#define RESP_TIMEOUT (1800*1000)
+#else
/* Default response timeout in milliseconds */
#define RESP_TIMEOUT (3600*1000)
+#endif
#ifdef CURL_DISABLE_VERBOSE_STRINGS
#define ftp_pasv_verbose(a,b,c,d) do { } while(0)