• Home
  • Raw
  • Download

Lines Matching refs:my_setopt

796           my_setopt(curl, CURLOPT_TCP_NODELAY, 0L);  in operate_do()
799 my_setopt(curl, CURLOPT_TCP_FASTOPEN, 1L); in operate_do()
802 my_setopt(curl, CURLOPT_WRITEDATA, &outs); in operate_do()
803 my_setopt(curl, CURLOPT_INTERLEAVEDATA, &outs); in operate_do()
806 my_setopt(curl, CURLOPT_WRITEFUNCTION, tool_write_cb); in operate_do()
811 my_setopt(curl, CURLOPT_WRITEFUNCTION, metalink_write_cb); in operate_do()
824 my_setopt(curl, CURLOPT_READDATA, &input); in operate_do()
826 my_setopt(curl, CURLOPT_READFUNCTION, tool_read_cb); in operate_do()
830 my_setopt(curl, CURLOPT_SEEKDATA, &input); in operate_do()
831 my_setopt(curl, CURLOPT_SEEKFUNCTION, tool_seek_cb); in operate_do()
836 my_setopt(curl, CURLOPT_BUFFERSIZE, (long)config->recvpersecond); in operate_do()
840 my_setopt(curl, CURLOPT_INFILESIZE_LARGE, uploadfilesize); in operate_do()
842 my_setopt(curl, CURLOPT_NOPROGRESS, global->noprogress?1L:0L); in operate_do()
844 my_setopt(curl, CURLOPT_NOBODY, 1L); in operate_do()
845 my_setopt(curl, CURLOPT_HEADER, 1L); in operate_do()
851 my_setopt(curl, CURLOPT_HEADER, config->include_headers?1L:0L); in operate_do()
864 my_setopt(curl, CURLOPT_HTTPPROXYTUNNEL, config->proxytunnel?1L:0L); in operate_do()
899 my_setopt(curl, CURLOPT_FAILONERROR, config->failonerror?1L:0L); in operate_do()
900 my_setopt(curl, CURLOPT_UPLOAD, uploadfile?1L:0L); in operate_do()
901 my_setopt(curl, CURLOPT_DIRLISTONLY, config->dirlistonly?1L:0L); in operate_do()
902 my_setopt(curl, CURLOPT_APPEND, config->ftp_append?1L:0L); in operate_do()
914 my_setopt(curl, CURLOPT_TRANSFERTEXT, config->use_ascii?1L:0L); in operate_do()
919 my_setopt(curl, CURLOPT_ERRORBUFFER, errorbuffer); in operate_do()
920 my_setopt(curl, CURLOPT_TIMEOUT_MS, (long)(config->timeout * 1000)); in operate_do()
926 my_setopt(curl, CURLOPT_FOLLOWLOCATION, in operate_do()
928 my_setopt(curl, CURLOPT_UNRESTRICTED_AUTH, in operate_do()
935 my_setopt(curl, CURLOPT_POSTFIELDSIZE_LARGE, in operate_do()
946 my_setopt(curl, CURLOPT_AUTOREFERER, config->autoreferer?1L:0L); in operate_do()
953 my_setopt(curl, CURLOPT_HEADEROPT, CURLHEADER_SEPARATE); in operate_do()
957 my_setopt(curl, CURLOPT_MAXREDIRS, config->maxredirs); in operate_do()
977 my_setopt(curl, CURLOPT_POSTREDIR, postRedir); in operate_do()
985 my_setopt(curl, CURLOPT_TRANSFER_ENCODING, 1L); in operate_do()
990 my_setopt(curl, CURLOPT_LOW_SPEED_LIMIT, in operate_do()
992 my_setopt(curl, CURLOPT_LOW_SPEED_TIME, config->low_speed_time); in operate_do()
993 my_setopt(curl, CURLOPT_MAX_SEND_SPEED_LARGE, in operate_do()
995 my_setopt(curl, CURLOPT_MAX_RECV_SPEED_LARGE, in operate_do()
999 my_setopt(curl, CURLOPT_RESUME_FROM_LARGE, config->resume_from); in operate_do()
1001 my_setopt(curl, CURLOPT_RESUME_FROM_LARGE, CURL_OFF_T_C(0)); in operate_do()
1062 my_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); in operate_do()
1063 my_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); in operate_do()
1066 my_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1L); in operate_do()
1071 my_setopt(curl, CURLOPT_PROXY_SSL_VERIFYPEER, 0L); in operate_do()
1072 my_setopt(curl, CURLOPT_PROXY_SSL_VERIFYHOST, 0L); in operate_do()
1075 my_setopt(curl, CURLOPT_PROXY_SSL_VERIFYPEER, 1L); in operate_do()
1079 my_setopt(curl, CURLOPT_SSL_VERIFYSTATUS, 1L); in operate_do()
1082 my_setopt(curl, CURLOPT_SSL_FALSESTART, 1L); in operate_do()
1089 my_setopt(curl, CURLOPT_PATH_AS_IS, 1L); in operate_do()
1116 my_setopt(curl, CURLOPT_FILETIME, 1L); in operate_do()
1119 my_setopt(curl, CURLOPT_CRLF, config->crlf?1L:0L); in operate_do()
1136 my_setopt(curl, CURLOPT_COOKIESESSION, config->cookiesession?1L:0L); in operate_do()
1146 my_setopt(curl, CURLOPT_TIMEVALUE, (long)config->condtime); in operate_do()
1149 my_setopt(curl, CURLOPT_STDERR, global->errors); in operate_do()
1160 my_setopt(curl, CURLOPT_XFERINFOFUNCTION, tool_progress_cb); in operate_do()
1161 my_setopt(curl, CURLOPT_XFERINFODATA, &progressbar); in operate_do()
1182 my_setopt(curl, CURLOPT_CONNECTTIMEOUT_MS, in operate_do()
1195 my_setopt(curl, CURLOPT_FTP_USE_EPSV, 0L); in operate_do()
1200 my_setopt(curl, CURLOPT_FTP_USE_EPRT, 0L); in operate_do()
1203 my_setopt(curl, CURLOPT_DEBUGFUNCTION, tool_debug_cb); in operate_do()
1204 my_setopt(curl, CURLOPT_DEBUGDATA, config); in operate_do()
1205 my_setopt(curl, CURLOPT_VERBOSE, 1L); in operate_do()
1217 my_setopt(curl, CURLOPT_FTP_CREATE_MISSING_DIRS, in operate_do()
1224 my_setopt(curl, CURLOPT_MAXFILESIZE_LARGE, in operate_do()
1228 my_setopt(curl, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); in operate_do()
1230 my_setopt(curl, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V6); in operate_do()
1232 my_setopt(curl, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_WHATEVER); in operate_do()
1269 my_setopt(curl, CURLOPT_IGNORE_CONTENT_LENGTH, config->ignorecl?1L:0L); in operate_do()
1272 my_setopt(curl, CURLOPT_FTP_SKIP_PASV_IP, config->ftp_skip_ip?1L:0L); in operate_do()
1275 my_setopt(curl, CURLOPT_FTP_FILEMETHOD, (long)config->ftp_filemethod); in operate_do()
1279 my_setopt(curl, CURLOPT_LOCALPORT, (long)config->localport); in operate_do()
1291 my_setopt(curl, CURLOPT_SSL_SESSIONID_CACHE, 0L); in operate_do()
1295 my_setopt(curl, CURLOPT_HTTP_CONTENT_DECODING, 0L); in operate_do()
1296 my_setopt(curl, CURLOPT_HTTP_TRANSFER_DECODING, 0L); in operate_do()
1301 my_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1L); in operate_do()
1303 my_setopt(curl, CURLOPT_TCP_KEEPIDLE, config->alivetime); in operate_do()
1304 my_setopt(curl, CURLOPT_TCP_KEEPINTVL, config->alivetime); in operate_do()
1308 my_setopt(curl, CURLOPT_TCP_KEEPALIVE, 0L); in operate_do()
1312 my_setopt(curl, CURLOPT_TFTP_BLKSIZE, config->tftp_blksize); in operate_do()
1322 my_setopt(curl, CURLOPT_FTP_USE_PRET, 1L); in operate_do()
1338 my_setopt(curl, CURLOPT_HEADERFUNCTION, tool_header_cb); in operate_do()
1339 my_setopt(curl, CURLOPT_HEADERDATA, &hdrcbdata); in operate_do()
1385 my_setopt(curl, CURLOPT_PROXY_SSL_OPTIONS, in operate_do()
1393 my_setopt(curl, CURLOPT_SASL_IR, 1L); in operate_do()
1396 my_setopt(curl, CURLOPT_SSL_ENABLE_NPN, 0L); in operate_do()
1400 my_setopt(curl, CURLOPT_SSL_ENABLE_ALPN, 0L); in operate_do()
1419 my_setopt(curl, CURLOPT_TFTP_NO_OPTIONS, 1L); in operate_do()