Searched refs:custom (Results 1 – 25 of 108) sorted by relevance
12345
/curl/docs/libcurl/ |
H A D | curl_mime_headers.md | 19 curl_mime_headers - set a mime part's custom headers 32 curl_mime_headers(3) sets a mime part's custom headers. 34 *part* is the part's handle to assign the custom headers list to. 36 *headers* is the head of a list of custom headers; it may be set to NULL 37 to remove a previously attached custom header list. 43 Setting a part's custom headers list multiple times is valid: only the value
|
H A D | curl_ws_meta.md | 126 struct customdata custom; 127 custom.easy = curl; 128 custom.ptr = NULL; 130 curl_easy_setopt(curl, CURLOPT_WRITEDATA, &custom);
|
/curl/tests/data/ |
H A D | test13 | 5 HTTP custom request 15 blabla custom request result 25 HTTP custom request 'DELETE'
|
H A D | test540 | 76 http://test.remote.example.com/path/%TESTNUMBER http://%HOSTIP:%HTTPPORT silly:person custom.set.ho… 84 Host: custom.set.host.name 89 Host: custom.set.host.name 95 Host: custom.set.host.name 100 Host: custom.set.host.name
|
H A D | test950 | 25 SMTP VRFY with custom request 28 # the custom request just does it lowercase to remain the same command
|
H A D | test677 | 23 IMAP with CONNECT_ONLY, custom command then exit
|
H A D | test1593 | 27 HTTP custom header overrides CURLOPT_TIMECONDITION
|
H A D | test841 | 33 IMAP custom request doesn't check continuation data
|
/curl/docs/cmdline-opts/ |
H A D | request.md | 26 Specifies a custom request method to use when communicating with the HTTP 46 Specifies a custom FTP command to use instead of *LIST* when doing file lists 50 Specifies a custom POP3 command to use instead of *LIST* or *RETR*. 54 Specifies a custom IMAP command to use instead of *LIST*. (Added in 7.30.0) 57 Specifies a custom SMTP command to use instead of *HELP* or **VRFY**. (Added in 7.34.0)
|
H A D | header.md | 7 Help: Pass custom header(s) to server 32 custom header that has the same name as one of the internal ones curl would 37 the right side of the colon, as in: -H `Host:`. If you send the custom header 55 You need --proxy-header to send custom headers intended for an HTTP proxy.
|
H A D | manual.md | 9 Multi: custom
|
/curl/docs/libcurl/opts/ |
H A D | CURLMOPT_TIMERDATA.md | 17 CURLMOPT_TIMERDATA - custom pointer to pass to timer callback 45 void *custom; 51 printf("our ptr: %p\n", mydata->custom);
|
H A D | CURLOPT_CLOSESOCKETDATA.md | 44 void *custom; 50 printf("our ptr: %p\n", my->custom);
|
H A D | CURLOPT_FNMATCH_DATA.md | 45 void *custom; 52 printf("my ptr: %p\n", my->custom);
|
H A D | CURLOPT_INTERLEAVEDATA.md | 44 void *custom; 49 printf("my pointer: %p\n", l->custom);
|
H A D | CURLMOPT_SOCKETDATA.md | 18 CURLMOPT_SOCKETDATA - custom pointer passed to the socket callback 71 /* ... use socket callback and custom pointer */
|
H A D | CURLOPT_DEBUGDATA.md | 43 void *custom; 51 printf("our ptr: %p\n", mine->custom);
|
H A D | CURLOPT_FNMATCH_FUNCTION.md | 56 void *custom; 62 printf("my pointer: %p\n", data->custom);
|
H A D | CURLOPT_CLOSESOCKETFUNCTION.md | 55 void *custom; 61 printf("our ptr: %p\n", my->custom);
|
H A D | CURLOPT_SSH_HOSTKEYFUNCTION.md | 45 **clientp** is a custom pointer set with CURLOPT_SSH_HOSTKEYDATA(3). 68 void *custom;
|
H A D | CURLOPT_TRAILERDATA.md | 41 void *custom;
|
/curl/lib/ |
H A D | imap.c | 289 (imap->custom && !imap_matchresp(line, len, imap->custom) && in imap_endofresp() 296 !strcasecompare(imap->custom, "LSUB") && in imap_endofresp() 297 !strcasecompare(imap->custom, "UID") && in imap_endofresp() 299 !strcasecompare(imap->custom, "NOOP"))) in imap_endofresp() 652 if(imap->custom) in imap_perform_list() 1122 if(imap->custom) in imap_state_select_resp() 1541 Curl_safefree(imap->custom); in imap_done() 2091 if(custom) { in imap_parse_custom_request() 2093 result = Curl_urldecode(custom, 0, &imap->custom, NULL, REJECT_CTRL); in imap_parse_custom_request() 2097 const char *params = imap->custom; in imap_parse_custom_request() [all …]
|
H A D | smtp.h | 58 char *custom; /* Custom Request */ member
|
H A D | pop3.h | 57 char *custom; /* Custom Request */ member
|
H A D | imap.h | 67 char *custom; /* Custom request */ member
|
Completed in 26 milliseconds
12345