/curl/docs/examples/ |
H A D | hiperfifo.c | 196 static void event_cb(int fd, short kind, void *userp) in event_cb() argument 202 ((kind & EV_READ) ? CURL_CSELECT_IN : 0) | in event_cb() 203 ((kind & EV_WRITE) ? CURL_CSELECT_OUT : 0); in event_cb() 220 static void timer_cb(int fd, short kind, void *userp) in timer_cb() argument 225 (void)kind; in timer_cb() 252 int kind = in setsock() local 262 event_assign(&f->ev, g->evbase, f->sockfd, kind, event_cb, g); in setsock()
|
H A D | ghiper.c | 222 GIOCondition kind = in setsock() local 232 f->ev = g_io_add_watch(f->ch, kind, event_cb, g); in setsock()
|
H A D | evhiperfifo.c | 252 int kind = ((act & CURL_POLL_IN) ? EV_READ : 0) | in setsock() local 260 ev_io_init(&f->ev, event_cb, f->sockfd, kind); in setsock()
|
H A D | ephiperfifo.c | 272 int kind = ((act & CURL_POLL_IN) ? EPOLLIN : 0) | in setsock() local 285 ev.events = kind; in setsock()
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_MIME_OPTIONS.md | 51 As an example, consider field or filename *strangename"kind*. When the 53 *strangename%22kind*. When this option is set, it is sent as 54 *strangename"kind*.
|
H A D | CURLSHOPT_UNLOCKFUNC.md | 42 The *data* argument tells what kind of data libcurl wants to unlock. Make 43 sure that the callback uses a different lock for each kind of data.
|
H A D | CURLSHOPT_LOCKFUNC.md | 44 The *data* argument tells what kind of data libcurl wants to lock. Make 45 sure that the callback uses a different lock for each kind of data.
|
H A D | CURLOPT_IPRESOLVE.md | 30 Allows an application to select what kind of IP addresses to use when
|
H A D | CURLOPT_PROXY.md | 41 The proxy string may be prefixed with [scheme]:// to specify which kind of 82 kind of proxy the string identifies.
|
H A D | CURLOPT_RANGE.md | 40 *"X-Y,N-M"*. Using this kind of multiple intervals causes the HTTP server
|
H A D | CURLOPT_PRE_PROXY.md | 42 The pre proxy string should be prefixed with [scheme]:// to specify which kind
|
H A D | CURLOPT_POSTFIELDS.md | 44 This POST is a normal **application/x-www-form-urlencoded** kind (and libcurl
|
H A D | CURLOPT_SSL_VERIFYHOST.md | 73 it should be a Subject Alternate Name kind and its type should correctly
|
H A D | CURLOPT_RTSP_REQUEST.md | 29 Tell libcurl what kind of RTSP request to make. Pass one of the following RTSP
|
/curl/src/ |
H A D | tool_formparse.h | 42 toolmimekind kind; /* Part kind. */ member
|
H A D | tool_formparse.c | 41 toolmimekind kind) in tool_mime_new() argument 46 m->kind = kind; in tool_mime_new() 97 m->kind = TOOLMIME_FILEDATA; in tool_mime_new_filedata() 152 m->kind = TOOLMIME_STDINDATA; in tool_mime_new_filedata() 255 switch(m->kind) { in tool2curlparts() 272 if(!ret && m->kind == TOOLMIME_FILEDATA && !filename) in tool2curlparts()
|
H A D | tool_paramhlp.c | 531 static CURLcode checkpasswd(const char *kind, /* for what purpose */ in checkpasswd() argument 562 kind, *userpwd); in checkpasswd() 566 kind, *userpwd, i + 1); in checkpasswd()
|
H A D | tool_setopt.c | 448 switch(part->kind) { in libcurl_generate_mime_part() 473 if(part->kind == TOOLMIME_FILEDATA && !filename) { in libcurl_generate_mime_part()
|
/curl/tests/data/ |
H A D | test517 | 42 # for this kind of things.
|
H A D | test1070 | 41 will be sent in one go as that is kind of the point of this test!
|
/curl/docs/cmdline-opts/ |
H A D | ntlm.md | 23 efforts. This kind of behavior should not be endorsed, you should encourage
|
/curl/lib/ |
H A D | mime.c | 813 switch(part->kind) { in read_part_content() 1141 part->kind = MIMEKIND_NONE; in cleanup_part_content() 1213 switch(src->kind) { in Curl_mime_duppart() 1398 part->kind = MIMEKIND_DATA; in curl_mime_data() 1433 part->kind = MIMEKIND_FILE; in curl_mime_filedata() 1527 part->kind = MIMEKIND_CALLBACK; in curl_mime_data_cb() 1571 part->kind = MIMEKIND_MULTIPART; in Curl_mime_set_subparts() 1659 if(part->kind == MIMEKIND_MULTIPART) in mime_size() 1792 switch(part->kind) { in Curl_mime_prepare_headers() 1809 if(part->kind == MIMEKIND_MULTIPART) { in Curl_mime_prepare_headers() [all …]
|
H A D | mime.h | 113 enum mimekind kind; /* The part kind. */ member
|
/curl/docs/libcurl/ |
H A D | curl_easy_cleanup.md | 43 the protocol is of a kind that requires a command/response sequence before
|
H A D | curl_multi_assign.md | 71 In a typical application you allocate a struct or at least use some kind of
|