mirror of
https://github.com/curl/curl.git
synced 2026-06-01 22:04:15 +03:00
Commented the Curl_read() arguments.
This commit is contained in:
parent
385086b460
commit
2c756fa1d7
1 changed files with 5 additions and 5 deletions
10
lib/sendf.c
10
lib/sendf.c
|
|
@ -362,11 +362,11 @@ CURLcode Curl_client_write(struct SessionHandle *data,
|
|||
* If the read would block (EWOULDBLOCK) we return -1. Otherwise we return
|
||||
* a regular CURLcode value.
|
||||
*/
|
||||
int Curl_read(struct connectdata *conn,
|
||||
int sockfd,
|
||||
char *buf,
|
||||
size_t buffersize,
|
||||
ssize_t *n)
|
||||
int Curl_read(struct connectdata *conn, /* connection data */
|
||||
int sockfd, /* read from this file handle */
|
||||
char *buf, /* store read data here */
|
||||
size_t buffersize, /* max amount to read */
|
||||
ssize_t *n) /* amount bytes read */
|
||||
{
|
||||
ssize_t nread;
|
||||
#ifdef USE_SSLEAY
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue