• Home
  • Raw
  • Download

Lines Matching defs:UrlState

1295 struct UrlState {  struct
1297 struct conncache *conn_cache;
1299 int retrycount; /* number of retries on a new connection */
1302 struct curltime keeps_speed; /* for the progress meter really */
1304 long lastconnect_id; /* The last connection, -1 if undefined */
1305 struct dynbuf headerb; /* buffer to store headers in */
1307 char *buffer; /* download buffer */
1308 char *ulbuf; /* allocated upload buffer or NULL */
1309 curl_off_t current_speed; /* the ProgressShow() function sets this,
1311 char *first_host; /* host name of the first (not followed) request.
1317 int first_remote_port; /* remote port of the first (not followed) request */
1318 struct Curl_ssl_session *session; /* array of 'max_ssl_sessions' size */
1319 long sessionage; /* number of the most recent session */
1320 unsigned int tempcount; /* number of entries in use in tempwrite, 0 - 3 */
1321 struct tempbuf tempwrite[3]; /* BOTH, HEADER, BODY */
1322 char *scratch; /* huge buffer[set.buffer_size*2] for upload CRLF replacing */
1323 int os_errno; /* filled in with errno whenever an error occurs */
1326 void (*prev_signal)(int sig);
1328 struct digestdata digest; /* state data for host Digest auth */
1329 struct digestdata proxydigest; /* state data for proxy Digest auth */
1331 struct auth authhost; /* auth details for host */
1332 struct auth authproxy; /* auth details for proxy */
1333 void *resolver; /* resolver state, if it is used in the URL state -
1338 void *engine;
1340 struct curltime expiretime; /* set this with Curl_expire() only */
1341 struct Curl_tree timenode; /* for the splay stuff */
1342 struct Curl_llist timeoutlist; /* list of pending timeouts */
1343 struct time_node expires[EXPIRE_LAST]; /* nodes for each expire type */
1346 char *most_recent_ftp_entrypath;
1348 int httpversion; /* the lowest HTTP version*10 reported by any server
1357 curl_off_t crlf_conversions;
1359 char *range; /* range, if used. See README for detailed specification on
1361 curl_off_t resume_from; /* continue [ftp] transfer from here */
1364 long rtsp_next_client_CSeq; /* the session's next client CSeq */
1365 long rtsp_next_server_CSeq; /* the session's next server CSeq */
1366 long rtsp_CSeq_recv; /* most recent CSeq received */
1368 curl_off_t infilesize; /* size of file to upload, -1 means unknown.
1371 size_t drain; /* Increased when this stream has data to read, even if its
1375 curl_read_callback fread_func; /* read callback/function */
1376 void *in; /* CURLOPT_READDATA */
1378 struct Curl_easy *stream_depends_on;
1379 int stream_weight;
1380 CURLU *uh; /* URL handle for the current parsed URL */
1381 struct urlpieces up;
1382 Curl_HttpReq httpreq; /* what kind of HTTP request (if any) is this */
1384 size_t trailers_bytes_sent;
1385 struct dynbuf trailers_buf; /* a buffer containing the compiled trailing
1388 trailers_state trailers_state; /* whether we are sending trailers
1393 struct dynamically_allocated_data {
1404 } aptr;