mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 20:15:03 -05:00
- Man page *roff problems fixed thanks to input from Colin Watson. Problems
reported in the Debian package.
This commit is contained in:
parent
7bdd14a994
commit
e93c81196f
3
CHANGES
3
CHANGES
@ -7,6 +7,9 @@
|
|||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
Daniel Stenberg (7 May 2009)
|
Daniel Stenberg (7 May 2009)
|
||||||
|
- Man page *roff problems fixed thanks to input from Colin Watson. Problems
|
||||||
|
reported in the Debian package.
|
||||||
|
|
||||||
- Vijay G filed bug report #2723236
|
- Vijay G filed bug report #2723236
|
||||||
(http://curl.haxx.se/bug/view.cgi?id=2723236) identifying a problem with
|
(http://curl.haxx.se/bug/view.cgi?id=2723236) identifying a problem with
|
||||||
libcurl's TFTP code and its lack of dealing with the OACK packet.
|
libcurl's TFTP code and its lack of dealing with the OACK packet.
|
||||||
|
@ -41,6 +41,7 @@ This release includes the following bugfixes:
|
|||||||
o HTTP PUT protocol line endings portions mangled from CRLF to CRCRLF
|
o HTTP PUT protocol line endings portions mangled from CRLF to CRCRLF
|
||||||
o Rejected SSL session ids are killed properly (for OpenSSL and GnuTLS builds)
|
o Rejected SSL session ids are killed properly (for OpenSSL and GnuTLS builds)
|
||||||
o Deal with the TFTP OACK packet
|
o Deal with the TFTP OACK packet
|
||||||
|
o fixed roff mistakes in man pages
|
||||||
|
|
||||||
This release includes the following known bugs:
|
This release includes the following known bugs:
|
||||||
|
|
||||||
@ -53,6 +54,7 @@ advice from friends like these:
|
|||||||
Andre Guibert de Bruet, Andreas Farber, Frank Hempel, Pierre Brico,
|
Andre Guibert de Bruet, Andreas Farber, Frank Hempel, Pierre Brico,
|
||||||
Kamil Dudka, Jim Freeman, Daniel Johnson, Toshio Kuratomi, Martin Storsjo,
|
Kamil Dudka, Jim Freeman, Daniel Johnson, Toshio Kuratomi, Martin Storsjo,
|
||||||
Pramod Sharma, Gisle Vanem, Leanic Lefever, Rainer Koenig, Sven Wegener,
|
Pramod Sharma, Gisle Vanem, Leanic Lefever, Rainer Koenig, Sven Wegener,
|
||||||
Tim Chen, Constantine Sapuntzakis, David McCreedy, Michael Smith
|
Tim Chen, Constantine Sapuntzakis, David McCreedy, Michael Smith,
|
||||||
|
Colin Watson
|
||||||
|
|
||||||
Thanks! (and sorry if I forgot to mention someone)
|
Thanks! (and sorry if I forgot to mention someone)
|
||||||
|
@ -209,7 +209,7 @@ this returns a 1 you know that the reason you didn't get data in return is
|
|||||||
because it didn't fulfill the condition. The long ths argument points to will
|
because it didn't fulfill the condition. The long ths argument points to will
|
||||||
get a zero stored if the condition instead was met. (Added in 7.19.4)
|
get a zero stored if the condition instead was met. (Added in 7.19.4)
|
||||||
.SH TIMES
|
.SH TIMES
|
||||||
.NF
|
.nf
|
||||||
An overview of the six time values available from curl_easy_getinfo()
|
An overview of the six time values available from curl_easy_getinfo()
|
||||||
|
|
||||||
curl_easy_perform()
|
curl_easy_perform()
|
||||||
@ -221,7 +221,7 @@ curl_easy_perform()
|
|||||||
|--|--|--|--|--STARTTRANSFER
|
|--|--|--|--|--STARTTRANSFER
|
||||||
|--|--|--|--|--|--TOTAL
|
|--|--|--|--|--|--TOTAL
|
||||||
|--|--|--|--|--|--REDIRECT
|
|--|--|--|--|--|--REDIRECT
|
||||||
.FI
|
.fi
|
||||||
.IP NAMELOOKUP
|
.IP NAMELOOKUP
|
||||||
\fICURLINFO_NAMELOOKUP_TIME\fP. The time it took from the start until the name
|
\fICURLINFO_NAMELOOKUP_TIME\fP. The time it took from the start until the name
|
||||||
resolving was completed.
|
resolving was completed.
|
||||||
|
@ -235,9 +235,9 @@ at the user's discretion. \fICURL_SOCKET_BAD\fP return value from the
|
|||||||
callback function will signal an unrecoverable error to the library and it
|
callback function will signal an unrecoverable error to the library and it
|
||||||
will return \fICURLE_COULDNT_CONNECT\fP. This return code can be used for IP
|
will return \fICURLE_COULDNT_CONNECT\fP. This return code can be used for IP
|
||||||
address blacklisting. The default behavior is:
|
address blacklisting. The default behavior is:
|
||||||
.Bd -literal -offset indent
|
.nf
|
||||||
return socket(addr->family, addr->socktype, addr->protocol);
|
return socket(addr->family, addr->socktype, addr->protocol);
|
||||||
.Ed
|
.fi
|
||||||
(Option added in 7.17.1.)
|
(Option added in 7.17.1.)
|
||||||
.IP CURLOPT_OPENSOCKETDATA
|
.IP CURLOPT_OPENSOCKETDATA
|
||||||
Pass a pointer that will be untouched by libcurl and passed as the first
|
Pass a pointer that will be untouched by libcurl and passed as the first
|
||||||
|
@ -34,7 +34,7 @@ If more involved information is wanted, the particular "easy handle" in
|
|||||||
present in that struct and can thus be used in subsequent regular
|
present in that struct and can thus be used in subsequent regular
|
||||||
\fIcurl_easy_getinfo(3)\fP calls (or similar):
|
\fIcurl_easy_getinfo(3)\fP calls (or similar):
|
||||||
|
|
||||||
.NF
|
.nf
|
||||||
struct CURLMsg {
|
struct CURLMsg {
|
||||||
CURLMSG msg; /* what this message means */
|
CURLMSG msg; /* what this message means */
|
||||||
CURL *easy_handle; /* the handle it concerns */
|
CURL *easy_handle; /* the handle it concerns */
|
||||||
@ -43,7 +43,7 @@ present in that struct and can thus be used in subsequent regular
|
|||||||
CURLcode result; /* return code for transfer */
|
CURLcode result; /* return code for transfer */
|
||||||
} data;
|
} data;
|
||||||
};
|
};
|
||||||
|
.fi
|
||||||
When \fBmsg\fP is \fICURLMSG_DONE\fP, the message identifies a transfer that
|
When \fBmsg\fP is \fICURLMSG_DONE\fP, the message identifies a transfer that
|
||||||
is done, and then \fBresult\fP contains the return code for the easy handle
|
is done, and then \fBresult\fP contains the return code for the easy handle
|
||||||
that just completed.
|
that just completed.
|
||||||
|
Loading…
Reference in New Issue
Block a user