aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-01-15 11:44:33 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-01-15 11:44:33 +0000
commit63667dfd96a8ef581aa99bd1842748ff06889e9e (patch)
treee810c17ce8df57f03f10ea05309a3cc8e0f783bd /lib
parent77c388c9280bc53da4be2f4e214afdf77098ca4e (diff)
no TABs in source code
Diffstat (limited to 'lib')
-rw-r--r--lib/transfer.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index 5ba6cd59c..9f17bed86 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -317,7 +317,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
}
}
- break; /* read more and try again */
+ break; /* read more and try again */
}
/* decrease the size of the remaining buffer */
@@ -459,7 +459,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
FD_ZERO(&k->rkeepfd);
}
- break; /* exit header line loop */
+ break; /* exit header line loop */
}
/* We continue reading headers, so reset the line-based
@@ -742,7 +742,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
there might be a non-header part left in the end of the read
buffer. */
- } /* end if header mode */
+ } /* end if header mode */
/* This is not an 'else if' since it may be a rest from the header
parsing, where the beginning of the buffer is headers and the end
@@ -1135,13 +1135,13 @@ CURLcode Curl_readwrite_init(struct connectdata *conn)
/* we want header and/or body, if neither then don't do this! */
if(conn->bits.getheader || !data->set.no_body) {
- FD_ZERO (&k->readfd); /* clear it */
+ FD_ZERO (&k->readfd); /* clear it */
if(conn->sockfd != -1) {
FD_SET (conn->sockfd, &k->readfd); /* read socket */
k->keepon |= KEEP_READ;
}
- FD_ZERO (&k->writefd); /* clear it */
+ FD_ZERO (&k->writefd); /* clear it */
if(conn->writesockfd != -1) {
if (data->set.expect100header)
/* wait with write until we either got 100-continue or a timeout */
@@ -1647,10 +1647,10 @@ CURLcode Curl_perform(struct SessionHandle *data)
CURLcode
Curl_Transfer(struct connectdata *c_conn, /* connection data */
- int sockfd, /* socket to read from or -1 */
- int size, /* -1 if unknown at this point */
- bool getheader, /* TRUE if header parsing is wanted */
- long *bytecountp, /* return number of bytes read or NULL */
+ int sockfd, /* socket to read from or -1 */
+ int size, /* -1 if unknown at this point */
+ bool getheader, /* TRUE if header parsing is wanted */
+ long *bytecountp, /* return number of bytes read or NULL */
int writesockfd, /* socket to write to, it may very well be
the same we read from. -1 disables */
long *writebytecountp /* return number of bytes written or