diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-09-21 14:28:40 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-09-22 15:14:12 +0200 |
commit | 3d64031fa7a80ac4ae3fd09a5939196268b92f81 (patch) | |
tree | cf6006f0a3ed771c382e53016978241be02506d0 /lib/urldata.h | |
parent | 5a654a0a6990211ee63c55d6a5e0333ad087f133 (diff) | |
download | curl-3d64031fa7a80ac4ae3fd09a5939196268b92f81.tar.gz |
symbian: drop support
The OS is deprecated. I see no traces of anyone having actually built
curl for Symbian after 2012.
The public headers are unmodified.
Closes #5989
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index 7bb172493..d0a0625cd 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -76,9 +76,7 @@ /* length of longest IPv6 address string including the trailing null */ #define MAX_IPADR_LEN sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255") -/* Default FTP/IMAP etc response timeout in milliseconds. - Symbian OS panics when given a timeout much greater than 1/2 hour. -*/ +/* Default FTP/IMAP etc response timeout in milliseconds */ #define RESP_TIMEOUT (120*1000) /* Max string input length is a precaution against abuse and to detect junk @@ -1349,8 +1347,7 @@ struct UrlState { int httpversion; /* the lowest HTTP version*10 reported by any server involved in this request */ -#if !defined(WIN32) && !defined(MSDOS) && !defined(__EMX__) && \ - !defined(__SYMBIAN32__) +#if !defined(WIN32) && !defined(MSDOS) && !defined(__EMX__) /* do FTP line-end conversions on most platforms */ #define CURL_DO_LINEEND_CONV /* for FTP downloads: track CRLF sequences that span blocks */ |