X-Git-Url: http://sjero.net/git/?a=blobdiff_plain;f=src%2FChangeLog;h=8242627cff50bee3525be31bfd055503f83e1b35;hb=2219d47ba301c3ea47b36291dda8eabead0fc75d;hp=d4cb88a9478d65a69a7eeb6135856e662964c1cb;hpb=e65ff5729a876e9f0010ea3d00edb41cc0367a3e;p=wget diff --git a/src/ChangeLog b/src/ChangeLog index d4cb88a9..8242627c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,51 @@ +2005-04-07 Hrvoje Niksic + + * ptimer.c: New file. Move the "wtimer" functions from utils.c to + this file and rename them to ptimer_. + +2005-04-07 Hrvoje Niksic + + * host.c (NO_ADDRESS): Define NO_ADDRESS only after the system + headers have been included. + +2005-04-06 Hrvoje Niksic + + * http.c (pconn): Include NTLM data, which is per-connection. + (known_authentication_scheme_p): Recognize NTLM authorization. + (create_authorization_line): Call ntlm_input and ntlm_output. + + * http-ntlm.c: New file, donated by Daniel Stenberg and originally + written for curl, heavily modified for Wget. + + * utils.c (base64_encode): Relocated from http.c, since it is now + used by http-ntlm.c, and will possibly be used elsewhere. + (base64_decode): New function, originally based on code from GNU + recode. + +2005-04-02 Hrvoje Niksic + + * ftp.c (ftp_loop): Ditto. + + * ftp-basic.c (ftp_pasv): Use the xzero shorthand for memset(0). + (ftp_lpsv): Ditto. + +2005-04-05 Mauro Tortonesi + + * Makefile.in: removed string_t.c from list of source files. + +2005-04-04 Mauro Tortonesi + + * string_t.c: Removed. + + * string_t.h: Removed. + +2005-04-02 Hrvoje Niksic + + * url.c (rewrite_shorthand_url): Only accept recognized schemes. + That way "foo:80" will correctly be rewritten to "http://foo:80" + instead of left unchanged and ultimately rejected because of + "unsupported scheme foo". + 2005-03-31 Hrvoje Niksic * utils.c (number_to_string): Avoid explicit 64-bit constants;