5deab7ad | 17-Jan-2002 |
Daniel Stenberg |
more text added |
12cdfd28 | 17-Jan-2002 |
Daniel Stenberg |
added a comment about this example only works with 7.9.3 and newer libs |
eba8035e | 17-Jan-2002 |
Daniel Stenberg |
Richard Archer made it compile and build with OpenSSL versions prior to 0.9.5 |
edcbf435 | 17-Jan-2002 |
Daniel Stenberg |
include our own sprintf() prototype to make it return sensible data on all platforms, I also edited a few data types slightly to prevent my compiler from warning on comparisions between signe
include our own sprintf() prototype to make it return sensible data on all platforms, I also edited a few data types slightly to prevent my compiler from warning on comparisions between signed and unsigned values
show more ...
|
9289ea47 | 17-Jan-2002 |
Sterling Hughes |
Get this working, still need to check for leaks and such, but should be fine.. |
7d06185a | 17-Jan-2002 |
Sterling Hughes |
Make the keys for hostcache entries be in the format:: host:port, so accessing curl.haxx.se on port 80 would yield a key value of :: curl.haxx.se:80 |
01ecb1d7 | 17-Jan-2002 |
Daniel Stenberg |
filled-in text in the "Building" chapter and added a "libcurl with C++" chapter |
e177f145 | 16-Jan-2002 |
Daniel Stenberg |
SSL writes passed back a silly length... |
5c6eddca | 16-Jan-2002 |
Daniel Stenberg |
fixed time-out returned without error text set |
b3b47869 | 16-Jan-2002 |
Daniel Stenberg |
Kevin Roth's SSLeay() patch, slight edited by me. Works with OpenSSL 0.9.5 now. |
fbe29075 | 16-Jan-2002 |
Daniel Stenberg |
7.9.3-pre2 |
343da8d4 | 16-Jan-2002 |
Daniel Stenberg |
--cc and working non-blocking sockets uploads |
8d97792d | 16-Jan-2002 |
Daniel Stenberg |
- shrunk the BUFSIZE define from 50K to 20K - made a separate buffer for uploads (due to the non-blocking stuff) - added two connectdata struct fields for non-blocking uploads |
8d07c87b | 16-Jan-2002 |
Daniel Stenberg |
modified to deal with the new non-blocking versions of Curl_read() and Curl_write(). |
ed21701d | 16-Jan-2002 |
Daniel Stenberg |
Curl_write's 5th argument now is signed |
df015075 | 16-Jan-2002 |
Daniel Stenberg |
Curl_read() and Curl_write() are both now adjusted to return properly in cases where EWOULDBLOCK or equivalent is returned. We must not block. |
f2bda5fd | 16-Jan-2002 |
Daniel Stenberg |
Curl_write() now takes a different 5th argument |
cba9838e | 16-Jan-2002 |
Daniel Stenberg |
Somewhat ugly fix to deal with non-blocking sockets. We just loop and try again. THIS IS NOT A NICE FIX. |
b6dba9f5 | 16-Jan-2002 |
Daniel Stenberg |
Somewhat ugly fix to deal with non-blocking sockets. We just loop and try again. THIS IS NOT A NICE FIX. We should/must make a select() then and only retry when we can write to the socket aga
Somewhat ugly fix to deal with non-blocking sockets. We just loop and try again. THIS IS NOT A NICE FIX. We should/must make a select() then and only retry when we can write to the socket again.
show more ...
|
6e9d1617 | 16-Jan-2002 |
Daniel Stenberg |
added support for --cc to output the compiler name. This makes it possible to compile libcurl stuff without any prior knowledge: cc=`curl-config --cc` cflags=`curl-config --cflags`
added support for --cc to output the compiler name. This makes it possible to compile libcurl stuff without any prior knowledge: cc=`curl-config --cc` cflags=`curl-config --cflags` libs=`curl-config --libs` $cc $flags $libs -o example example.c Or if you prefer, the oh-so-cool single-line version: `curl-config --cc --cflags --libs` -o example example.c
show more ...
|
ea811fee | 16-Jan-2002 |
Daniel Stenberg |
added a somewhat cool single-line command that builds most example sources on unix-like systems |
7391fd8f | 15-Jan-2002 |
Daniel Stenberg |
initial attempt to write a tutorial-like libcurl guide |
6c00c58f | 14-Jan-2002 |
Daniel Stenberg |
fixed non-blocking reads, fixed ssl sessions, in_addr_t and more non-blocking |
4931fbce | 14-Jan-2002 |
Daniel Stenberg |
Curl_read() now returns a negative return code if EWOULDBLOCK or similar |
fefc7ea6 | 14-Jan-2002 |
Daniel Stenberg |
a memory leak when name lookup failed is now removed |