diff options
Diffstat (limited to 'docs/libcurl/curl_multi_info_read.3')
-rw-r--r-- | docs/libcurl/curl_multi_info_read.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/libcurl/curl_multi_info_read.3 b/docs/libcurl/curl_multi_info_read.3 index e5539c1dc..3a58c642e 100644 --- a/docs/libcurl/curl_multi_info_read.3 +++ b/docs/libcurl/curl_multi_info_read.3 @@ -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 \fIcurl_easy_getinfo(3)\fP calls (or similar): -.NF +.nf struct CURLMsg { CURLMSG msg; /* what this message means */ 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 */ } data; }; - +.fi 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 that just completed. |