diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-08-30 22:48:34 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-08-30 22:48:34 +0000 |
commit | 0ece1b5c34c049a3226f7dd793cf75e470c46e4d (patch) | |
tree | c75e91cd9eb07d5d1fdec54a2a38939f7888a342 /lib/sendf.h | |
parent | 315954c175c8a210dc2c36a9f7957ab12c5565ae (diff) | |
download | curl-0ece1b5c34c049a3226f7dd793cf75e470c46e4d.tar.gz |
Major rename and redesign of the internal "backbone" structs. Details will
be posted in a minute to the libcurl list.
Diffstat (limited to 'lib/sendf.h')
-rw-r--r-- | lib/sendf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sendf.h b/lib/sendf.h index ee1e628c1..67f3dd7f1 100644 --- a/lib/sendf.h +++ b/lib/sendf.h @@ -24,8 +24,8 @@ *****************************************************************************/ size_t Curl_sendf(int fd, struct connectdata *, const char *fmt, ...); -void Curl_infof(struct UrlData *, const char *fmt, ...); -void Curl_failf(struct UrlData *, const char *fmt, ...); +void Curl_infof(struct SessionHandle *, const char *fmt, ...); +void Curl_failf(struct SessionHandle *, const char *fmt, ...); #define infof Curl_infof #define failf Curl_failf @@ -41,7 +41,7 @@ typedef struct send_buffer send_buffer; #define CLIENTWRITE_HEADER 2 #define CLIENTWRITE_BOTH (CLIENTWRITE_BODY|CLIENTWRITE_HEADER) -CURLcode Curl_client_write(struct UrlData *data, int type, char *ptr, +CURLcode Curl_client_write(struct SessionHandle *data, int type, char *ptr, size_t len); /* internal read-function, does plain socket, SSL and krb4 */ |