Home
last modified time | relevance | path

Searched refs:action (Results 1 – 25 of 50) sorted by relevance

12

/curl/tests/
H A Ddictserver.py111 parser.add_argument("--port", action="store", default=9016,
113 parser.add_argument("--host", action="store", default=HOST,
115 parser.add_argument("--verbose", action="store", type=int, default=0,
117 parser.add_argument("--pidfile", action="store",
119 parser.add_argument("--logfile", action="store",
121 parser.add_argument("--srcdir", action="store", help="test directory")
122 parser.add_argument("--id", action="store", help="server ID")
123 parser.add_argument("--ipv4", action="store_true", default=0,
H A Dnegtelnetserver.py294 parser.add_argument("--port", action="store", default=9019,
296 parser.add_argument("--verbose", action="store", type=int, default=0,
298 parser.add_argument("--pidfile", action="store",
300 parser.add_argument("--logfile", action="store",
302 parser.add_argument("--srcdir", action="store", help="test directory")
303 parser.add_argument("--id", action="store", help="server ID")
304 parser.add_argument("--ipv4", action="store_true", default=0,
H A Dsmbserver.py386 parser.add_argument("--port", action="store", default=9017,
388 parser.add_argument("--host", action="store", default="127.0.0.1",
390 parser.add_argument("--verbose", action="store", type=int, default=0,
392 parser.add_argument("--pidfile", action="store",
394 parser.add_argument("--logfile", action="store",
396 parser.add_argument("--srcdir", action="store", help="test directory")
397 parser.add_argument("--id", action="store", help="server ID")
398 parser.add_argument("--ipv4", action="store_true", default=0,
/curl/lib/
H A Dsigpipe.h58 struct sigaction action; in sigpipe_ignore() local
61 action = ig->old_pipe_act; in sigpipe_ignore()
63 action.sa_handler = SIG_IGN; in sigpipe_ignore()
64 sigaction(SIGPIPE, &action, NULL); in sigpipe_ignore()
/curl/.github/workflows/
H A Dcodeql-analysis.yml54 uses: github/codeql-action/init@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3
62 uses: github/codeql-action/autobuild@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3
76 uses: github/codeql-action/analyze@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3
H A Dnon-native.yml49 uses: cross-platform-actions/action@cdc9ee69ef84a5f2e59c9058335d9c57bcb4ac86 # v0.25.0
87 uses: cross-platform-actions/action@cdc9ee69ef84a5f2e59c9058335d9c57bcb4ac86 # v0.25.0
131 uses: cross-platform-actions/action@cdc9ee69ef84a5f2e59c9058335d9c57bcb4ac86 # v0.25.0
161 uses: cross-platform-actions/action@cdc9ee69ef84a5f2e59c9058335d9c57bcb4ac86 # v0.25.0
/curl/docs/examples/
H A Dmulti-event.c168 static int handle_socket(CURL *easy, curl_socket_t s, int action, void *userp, in handle_socket() argument
174 switch(action) { in handle_socket()
183 if(action != CURL_POLL_IN) in handle_socket()
185 if(action != CURL_POLL_OUT) in handle_socket()
H A Dghiper.c91 int action; member
186 int action = in event_cb() local
190 rc = curl_multi_socket_action(g->multi, fd, action, &g->still_running); in event_cb()
227 f->action = act; in setsock()
236 static void addsock(curl_socket_t s, CURL *easy, int action, GlobalInfo *g) in addsock() argument
242 setsock(fdp, s, easy, action, g); in addsock()
267 "Changing action from %d to %d\n", fdp->action, what); in sock_cb()
H A Dhiperfifo.c108 int action; member
201 int action = in event_cb() local
205 rc = curl_multi_socket_action(g->multi, fd, action, &g->still_running); in event_cb()
257 f->action = act; in setsock()
269 static void addsock(curl_socket_t s, CURL *easy, int action, GlobalInfo *g) in addsock() argument
274 setsock(fdp, s, easy, action, g); in addsock()
299 whatstr[fdp->action], whatstr[what]); in sock_cb()
H A Dmulti-uv.c187 static int cb_socket(CURL *easy, curl_socket_t s, int action, in cb_socket() argument
195 switch(action) { in cb_socket()
204 if(action != CURL_POLL_IN) in cb_socket()
206 if(action != CURL_POLL_OUT) in cb_socket()
H A Devhiperfifo.c110 int action; member
208 int action = ((revents & EV_READ) ? CURL_POLL_IN : 0) | in event_cb() local
210 rc = curl_multi_socket_action(g->multi, w->fd, action, &g->still_running); in event_cb()
256 f->action = act; in setsock()
269 static void addsock(curl_socket_t s, CURL *easy, int action, GlobalInfo *g) in addsock() argument
274 setsock(fdp, s, easy, action, g); in addsock()
302 whatstr[fdp->action], whatstr[what]); in sock_cb()
H A Dephiperfifo.c108 int action; member
206 int action = ((revents & EPOLLIN) ? CURL_CSELECT_IN : 0) | in event_cb() local
209 rc = curl_multi_socket_action(g->multi, fd, action, &g->still_running); in event_cb()
282 f->action = act; in setsock()
295 static void addsock(curl_socket_t s, CURL *easy, int action, GlobalInfo *g) in addsock() argument
300 setsock(fdp, s, easy, action, g); in addsock()
325 whatstr[fdp->action], whatstr[what]); in sock_cb()
/curl/tests/libtest/
H A Dlib582.c99 static int curlSocketCallback(CURL *easy, curl_socket_t s, int action, in curlSocketCallback() argument
107 if(action == CURL_POLL_IN || action == CURL_POLL_INOUT) in curlSocketCallback()
110 if(action == CURL_POLL_OUT || action == CURL_POLL_INOUT) in curlSocketCallback()
113 if(action == CURL_POLL_REMOVE) { in curlSocketCallback()
H A Dlib530.c115 static int curlSocketCallback(CURL *easy, curl_socket_t s, int action, in curlSocketCallback() argument
129 if(action == CURL_POLL_IN || action == CURL_POLL_INOUT) in curlSocketCallback()
133 if(action == CURL_POLL_OUT || action == CURL_POLL_INOUT) in curlSocketCallback()
137 if(action == CURL_POLL_REMOVE) { in curlSocketCallback()
/curl/tests/http/
H A Dscorecard.py675 parser.add_argument("-j", "--json", action='store_true',
677 parser.add_argument("-H", "--handshakes", action='store_true',
679 parser.add_argument("-d", "--downloads", action='store_true',
681 parser.add_argument("--download", action='append', type=str,
687 parser.add_argument("-u", "--uploads", action='store_true',
689 parser.add_argument("--upload", action='append', type=str,
691 parser.add_argument("--upload-count", action='store', type=int,
693 parser.add_argument("-r", "--requests", action='store_true',
695 parser.add_argument("--request-count", action='store', type=int,
701 parser.add_argument("--curl-verbose", action='store_true',
[all …]
/curl/docs/libcurl/
H A Dcurl_multi_socket_action.md20 curl_multi_socket_action - read/write available data given an action
35 When the application has detected action on a socket handled by libcurl, it
37 set to the socket with the action. When the events on a socket are known, they
63 timeout action: call the curl_multi_socket_action(3) function with the
96 socket(s) that got action. If no activity is detected and the timeout expires,
110 int fd; /* the descriptor that had action */
H A Dcurl_multi_timeout.md19 curl_multi_timeout - how long to wait for action before proceeding
35 Proceeding means either doing the socket-style timeout action: call the
82 Call curl_multi_timeout(3), then wait for action on the sockets. Figure
H A Dcurl_url_cleanup.md35 immediately with no action.
H A Dcurl_free.md34 with no action.
H A Dcurl_slist_free_all.md32 with no action.
H A Dcurl_share_cleanup.md33 immediately with no action.
/curl/src/
H A Dtool_paramhlp.c403 enum e_action { allow, deny, set } action = allow; in proto2num() local
409 action = set; in proto2num()
412 action = deny; in proto2num()
415 action = allow; in proto2num()
425 switch(action) { in proto2num()
440 switch(action) { in proto2num()
454 if(action == set) in proto2num()
/curl/docs/cmdline-opts/
H A Dremote-name-all.md17 Change the default action for all given URLs to be dealt with as if
/curl/docs/libcurl/opts/
H A DCURLOPT_HAPROXYPROTOCOL.md30 protocol v1 header at beginning of the connection. The default action is not to
H A DCURLOPT_KEEP_SENDING_ON_ERROR.md32 if the HTTP code returned is equal to or larger than 300. The default action

Completed in 35 milliseconds

12