diff options
-rw-r--r-- | networking/wget.c | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/networking/wget.c b/networking/wget.c index c82086878..d5a92a950 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -137,6 +137,8 @@ | |||
137 | #endif | 137 | #endif |
138 | 138 | ||
139 | 139 | ||
140 | #define SSL_SUPPORTED (ENABLE_FEATURE_WGET_OPENSSL || ENABLE_FEATURE_WGET_SSL_HELPER) | ||
141 | |||
140 | struct host_info { | 142 | struct host_info { |
141 | char *allocated; | 143 | char *allocated; |
142 | const char *path; | 144 | const char *path; |
@@ -147,7 +149,7 @@ struct host_info { | |||
147 | }; | 149 | }; |
148 | static const char P_FTP[] ALIGN1 = "ftp"; | 150 | static const char P_FTP[] ALIGN1 = "ftp"; |
149 | static const char P_HTTP[] ALIGN1 = "http"; | 151 | static const char P_HTTP[] ALIGN1 = "http"; |
150 | #if ENABLE_FEATURE_WGET_OPENSSL || ENABLE_FEATURE_WGET_SSL_HELPER | 152 | #if SSL_SUPPORTED |
151 | static const char P_HTTPS[] ALIGN1 = "https"; | 153 | static const char P_HTTPS[] ALIGN1 = "https"; |
152 | #endif | 154 | #endif |
153 | 155 | ||
@@ -448,7 +450,7 @@ static void parse_url(const char *src_url, struct host_info *h) | |||
448 | if (strcmp(url, P_FTP) == 0) { | 450 | if (strcmp(url, P_FTP) == 0) { |
449 | h->port = bb_lookup_port(P_FTP, "tcp", 21); | 451 | h->port = bb_lookup_port(P_FTP, "tcp", 21); |
450 | } else | 452 | } else |
451 | #if ENABLE_FEATURE_WGET_OPENSSL || ENABLE_FEATURE_WGET_SSL_HELPER | 453 | #if SSL_SUPPORTED |
452 | if (strcmp(url, P_HTTPS) == 0) { | 454 | if (strcmp(url, P_HTTPS) == 0) { |
453 | h->port = bb_lookup_port(P_HTTPS, "tcp", 443); | 455 | h->port = bb_lookup_port(P_HTTPS, "tcp", 443); |
454 | h->protocol = P_HTTPS; | 456 | h->protocol = P_HTTPS; |
@@ -1089,12 +1091,17 @@ static void download_one_url(const char *url) | |||
1089 | } | 1091 | } |
1090 | 1092 | ||
1091 | fflush(sfp); | 1093 | fflush(sfp); |
1092 | /* If we use SSL helper, keeping our end of the socket open for writing | 1094 | |
1093 | * makes our end (i.e. the same fd!) readable (EAGAIN instead of EOF) | 1095 | #if SSL_SUPPORTED |
1094 | * even after child closes its copy of the fd. | 1096 | if (target.protocol == P_HTTPS) { |
1095 | * This helps: | 1097 | /* If we use SSL helper, keeping our end of the socket open for writing |
1096 | */ | 1098 | * makes our end (i.e. the same fd!) readable (EAGAIN instead of EOF) |
1097 | shutdown(fileno(sfp), SHUT_WR); | 1099 | * even after child closes its copy of the fd. |
1100 | * This helps: | ||
1101 | */ | ||
1102 | shutdown(fileno(sfp), SHUT_WR); | ||
1103 | } | ||
1104 | #endif | ||
1098 | 1105 | ||
1099 | /* | 1106 | /* |
1100 | * Retrieve HTTP response line and check for "200" status code. | 1107 | * Retrieve HTTP response line and check for "200" status code. |