mirror of
https://github.com/curl/curl.git
synced 2026-08-02 09:10:29 +03:00
Added support for running on Symbian OS.
This commit is contained in:
parent
ad1dd08693
commit
1960eebc2d
25 changed files with 1158 additions and 16 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue