diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-01-20 14:12:10 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-01-20 14:12:10 +0100 |
commit | a0aae9f71442366ec429657c437fd7dd815978fd (patch) | |
tree | 3c9cee2b6b6191e6e310bbdb681b6ed8ddb2d509 /networking/wget.c | |
parent | abbf17abccbf832365d9acf1c280369ba7d5f8b2 (diff) | |
download | busybox-w32-a0aae9f71442366ec429657c437fd7dd815978fd.tar.gz busybox-w32-a0aae9f71442366ec429657c437fd7dd815978fd.tar.bz2 busybox-w32-a0aae9f71442366ec429657c437fd7dd815978fd.zip |
tls: decode alerts and in particular, EOF alert.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/wget.c b/networking/wget.c index 5da6481c1..58ead4c96 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -472,7 +472,7 @@ static void parse_url(const char *src_url, struct host_info *h) | |||
472 | 472 | ||
473 | // FYI: | 473 | // FYI: |
474 | // "Real" wget 'http://busybox.net?var=a/b' sends this request: | 474 | // "Real" wget 'http://busybox.net?var=a/b' sends this request: |
475 | // 'GET /?var=a/b HTTP 1.0' | 475 | // 'GET /?var=a/b HTTP/1.0' |
476 | // and saves 'index.html?var=a%2Fb' (we save 'b') | 476 | // and saves 'index.html?var=a%2Fb' (we save 'b') |
477 | // wget 'http://busybox.net?login=john@doe': | 477 | // wget 'http://busybox.net?login=john@doe': |
478 | // request: 'GET /?login=john@doe HTTP/1.0' | 478 | // request: 'GET /?login=john@doe HTTP/1.0' |