Home
last modified time | relevance | path

Searched refs:timeout (Results 1 – 17 of 17) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dfdevent_solaris_port.c99 struct timespec timeout; in fdevent_solaris_port_poll() local
101 timeout.tv_sec = timeout_ms/1000L; in fdevent_solaris_port_poll()
102 timeout.tv_nsec = (timeout_ms % 1000L) * 1000000L; in fdevent_solaris_port_poll()
105 if ((ret = port_getn(ev->port_fd, ev->port_events, 0, &wait_for_events, &timeout)) < 0) return ret; in fdevent_solaris_port_poll()
113 if ((ret = port_getn(ev->port_fd, ev->port_events, ev->maxfds, &available_events, &timeout)) < 0) { in fdevent_solaris_port_poll()
H A Dmod_secure_download.c32 unsigned int timeout; member
109 s->timeout = 60; in SETDEFAULTS_FUNC()
114 cv[3].destination = &(s->timeout); in SETDEFAULTS_FUNC()
160 PATCH(timeout); in mod_secdownload_patch_connection()
181 PATCH(timeout); in mod_secdownload_patch_connection()
240 if ( (srv->cur_ts > ts && (unsigned int) (srv->cur_ts - ts) > p->conf.timeout) || in URIHANDLER_FUNC()
241 (srv->cur_ts < ts && (unsigned int) (ts - srv->cur_ts) > p->conf.timeout) ) { in URIHANDLER_FUNC()
/mOS-networking-stack/core/src/
H A Deventpoll.c339 struct mtcp_epoll_event *events, int maxevents, int timeout) in mtcp_epoll_wait() argument
397 while (eq->num_events == 0 && eq_shadow->num_events == 0 && timeout != 0) { in mtcp_epoll_wait()
407 if (timeout > 0) { in mtcp_epoll_wait()
411 if (timeout >= 1000) { in mtcp_epoll_wait()
413 sec = timeout / 1000; in mtcp_epoll_wait()
415 timeout -= sec * 1000; in mtcp_epoll_wait()
418 deadline.tv_nsec += timeout * 1000000; in mtcp_epoll_wait()
436 timeout = 0; in mtcp_epoll_wait()
437 } else if (timeout < 0) { in mtcp_epoll_wait()
535 if (cnt == 0 && timeout != 0) in mtcp_epoll_wait()
H A Dtimer.c554 NewTimer(mtcp_manager_t mtcp, int id, struct timeval *timeout, callback_t cb) in NewTimer() argument
567 TIMEVAL_ADD(&t->exp, timeout); in NewTimer()
584 mtcp_settimer(mctx_t mctx, int id, struct timeval *timeout, callback_t cb) in mtcp_settimer() argument
587 if (!mtcp || !timeout || !cb) in mtcp_settimer()
590 struct timer *t = NewTimer(mtcp, id, timeout, cb); in mtcp_settimer()
/mOS-networking-stack/samples/lighttpd-1.4.32/doc/outdated/
H A Dsecdownload.txt30 secdownload.timeout = <short> (default: 60 seconds)
86 invalidate the URL after a given timeout (secdownload.timeout).
98 If the timeout is reached, status 408 'Request Timeout' will be
102 If token and timeout are valid, the <rel-path> is appended to
146 secdownload.timeout = 120
H A Dtrigger_b4_dl.txt28 …* if user visits ''download-url'' again after ''trigger-timeout'' has elapsed, the request is deni…
48 trigger-before-download.trigger-timeout = 10
H A Dfastcgi.txt282 The idle-timeout specifies how long a fastcgi-process should wait
295 "idle-timeout" => 20
321 "idle-timeout" => 20
/mOS-networking-stack/samples/lighttpd-1.4.32/tests/
H A DLightyTest.pm90 my $timeout = 5*10; # 5 secs, select waits 0.1 s
94 $timeout--;
100 if (0 >= $timeout) {
H A Dlighttpd.conf146 secdownload.timeout = 120
/mOS-networking-stack/samples/lighttpd-1.4.32/doc/config/conf.d/
H A Dtrigger_b4_dl.conf53 trigger-before-download.trigger-timeout = 10
/mOS-networking-stack/core/include/
H A Dmtcp_epoll.h109 struct mtcp_epoll_event *events, int maxevents, int timeout);
H A Dmos_api.h472 mtcp_settimer(mctx_t mctx, int id, struct timeval *timeout, callback_t cb);
/mOS-networking-stack/core/src/include/
H A Dmtcp_epoll.h109 struct mtcp_epoll_event *events, int maxevents, int timeout);
H A Dnetmap_user.h539 win_nm_poll(struct pollfd *fds, int nfds, int timeout) in win_nm_poll() argument
544 return poll(fds, nfds, timeout); in win_nm_poll()
548 prd.timeout = timeout; in win_nm_poll()
H A Dnetmap.h582 int timeout; member
H A Dmos_api.h472 mtcp_settimer(mctx_t mctx, int id, struct timeval *timeout, callback_t cb);
/mOS-networking-stack/samples/lighttpd-1.4.32/
H A DNEWS126 * Use unsigned int for secdownload.timeout (fixes #1966)
180 * Fix linger close timeout handling, drop timeout to 5 seconds (fixes #2086)
594 * fixed handling for secure-download.timeout (jamis/at/37signals.com)
852 * fixed timeout handling in handling POST requests