14e9420d | 30-Jan-2002 |
Daniel Stenberg |
extended the proxy chapter mucho |
5b58e61f | 30-Jan-2002 |
Daniel Stenberg |
now re-seed by force (even if already seeded) if a random file or egd socket is given |
be2f3071 | 29-Jan-2002 |
Daniel Stenberg |
conn->upload_bufsize exists no more |
85dbf82d | 29-Jan-2002 |
Daniel Stenberg |
append a CRLF pair after the content-type line |
a9c4963c | 29-Jan-2002 |
Daniel Stenberg |
removed three loust fprintf()s removed the initial CRLF in the formpost, as they are part of the request and should be written by the code in http.c! |
a4934387 | 29-Jan-2002 |
Daniel Stenberg |
upload progress counter fix, removed the adjustable upload buffer size |
e88a2ec6 | 29-Jan-2002 |
Daniel Stenberg |
no more adjustable upload buffer size, we use non-blocking sockets now so this work-around is not needed anymore! |
06669601 | 29-Jan-2002 |
Daniel Stenberg |
nine items since 7.9.3 |
f114caca | 29-Jan-2002 |
Daniel Stenberg |
- T. Bharath pointed out that we seed SSL on every connect, which is a time- consuming operation that should only be needed to do once. We patched libcurl to now only seed on the first co
- T. Bharath pointed out that we seed SSL on every connect, which is a time- consuming operation that should only be needed to do once. We patched libcurl to now only seed on the first connect when unseeded. The seeded status is global so it'll now only happen once during a program's life time.
show more ...
|
9468c9c7 | 29-Jan-2002 |
Daniel Stenberg |
bad tag |
76c53c69 | 29-Jan-2002 |
Daniel Stenberg |
Giaslas Georgios introduced CURLINFO_CONTENT_TYPE |
c341b11a | 28-Jan-2002 |
Daniel Stenberg |
Steve Marx helped us realize that we shouldn't treat customrequest as a request of its own, it just changes the keyword of a request. |
6212e699 | 28-Jan-2002 |
Daniel Stenberg |
someone should have me punished, but this bug made curl bug seriously on IPv4-linux machines |
28049a18 | 28-Jan-2002 |
Daniel Stenberg |
don't count a custom request as a request type of its own, it is merely a modifier of another type |
5d3dd791 | 28-Jan-2002 |
Daniel Stenberg |
newly generated |
ae837551 | 28-Jan-2002 |
Daniel Stenberg |
Andreas Damm made it reentrant safe! |
e3f10eb8 | 27-Jan-2002 |
Daniel Stenberg |
no longer add CRLF _after_ POST data, it should not be needed. Pedro Neves pointed out this ugliness. |
2b1f6832 | 27-Jan-2002 |
Daniel Stenberg |
set header and request size to 0 before each *_perform() |
a2b19c9a | 25-Jan-2002 |
Daniel Stenberg |
postit.c is removed, it used the deprecated curl_formparse() and may encourage people to use bad functions |
4146ce82 | 25-Jan-2002 |
Daniel Stenberg |
bug report #508235 identified a non-working Location: following, and this little fix seems to correct it. another case where we just returned and didn't shut off the reading. This bug is intr
bug report #508235 identified a non-working Location: following, and this little fix seems to correct it. another case where we just returned and didn't shut off the reading. This bug is introduced in 7.9.3 due to the new internal "order".
show more ...
|
170bd6da | 24-Jan-2002 |
Daniel Stenberg |
don't install the example programs! :-O |
7e16ec87 | 23-Jan-2002 |
Daniel Stenberg |
7.9.3 |
8c459156 | 23-Jan-2002 |
Daniel Stenberg |
7.9.3 public |
2db89480 | 23-Jan-2002 |
Daniel Stenberg |
Andr�s Garc�a found out that we didn't properly stop reading from a connection after the headers on a HEAD request. This bug has been added in 7.9.3 and was mnot present earlier. |
95ceeb6e | 22-Jan-2002 |
Daniel Stenberg |
more about passwords and started about proxies |