mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
no more adjustable upload buffer size, we use non-blocking sockets now so
this work-around is not needed anymore!
This commit is contained in:
parent
0666960173
commit
e88a2ec6fc
@ -85,11 +85,6 @@
|
|||||||
/* Download buffer size, keep it fairly big for speed reasons */
|
/* Download buffer size, keep it fairly big for speed reasons */
|
||||||
#define BUFSIZE (1024*20)
|
#define BUFSIZE (1024*20)
|
||||||
|
|
||||||
/* Defaul upload buffer size, keep it smallish to get faster progress meter
|
|
||||||
updates. This is just default, it is dynamic and adjusts to the upload
|
|
||||||
speed. */
|
|
||||||
#define UPLOAD_BUFSIZE (1024*2)
|
|
||||||
|
|
||||||
/* Initial size of the buffer to store headers in, it'll be enlarged in case
|
/* Initial size of the buffer to store headers in, it'll be enlarged in case
|
||||||
of need. */
|
of need. */
|
||||||
#define HEADERSIZE 256
|
#define HEADERSIZE 256
|
||||||
@ -317,10 +312,6 @@ struct connectdata {
|
|||||||
struct timeval created; /* creation time */
|
struct timeval created; /* creation time */
|
||||||
int firstsocket; /* the main socket to use */
|
int firstsocket; /* the main socket to use */
|
||||||
int secondarysocket; /* for i.e ftp transfers */
|
int secondarysocket; /* for i.e ftp transfers */
|
||||||
|
|
||||||
long upload_bufsize; /* adjust as you see fit, never bigger than BUFSIZE
|
|
||||||
never smaller than UPLOAD_BUFSIZE */
|
|
||||||
|
|
||||||
long maxdownload; /* in bytes, the maximum amount of data to fetch, 0
|
long maxdownload; /* in bytes, the maximum amount of data to fetch, 0
|
||||||
means unlimited */
|
means unlimited */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user