do {
int hbufp_index;
int rest_length;
- int full_length;
+ size_t full_length;
int writetype;
/* str_start is start of line within buf */
if (k->hbuflen + full_length >=
data->state.headersize) {
char *newbuff;
- long newsize=CURLMAX((k->hbuflen+full_length)*3/2,
- data->state.headersize*2);
+ size_t newsize=CURLMAX((k->hbuflen+full_length)*3/2,
+ data->state.headersize*2);
hbufp_index = k->hbufp - data->state.headerbuff;
newbuff = (char *)realloc(data->state.headerbuff, newsize);
if(!newbuff) {
else if (checkprefix("Content-Type:", k->p)) {
char *start;
char *end;
- int len;
+ size_t len;
/* Find the first non-space letter */
for(start=k->p+13;
/* Location: redirect */
char prot[16]; /* URL protocol string storage */
char letter; /* used for a silly sscanf */
- int newlen;
+ size_t newlen;
char *newest;
if (data->set.maxredirs &&
char *pathsep;
char *useurl = newurl;
- int urllen;
+ size_t urllen;
/* we must make our own copy of the URL to play with, as it may
point to read-only data */
int headerline; /* counts header lines to better track the
first one */
char *hbufp; /* points at *end* of header line */
- int hbuflen;
+ size_t hbuflen;
char *str; /* within buf */
char *str_start; /* within buf */
char *end_ptr; /* within buf */
long numconnects; /* size of the 'connects' array */
char *headerbuff; /* allocated buffer to store headers in */
- int headersize; /* size of the allocation */
+ size_t headersize; /* size of the allocation */
char buffer[BUFSIZE+1]; /* download buffer */
char uploadbuffer[BUFSIZE+1]; /* upload buffer */