Home
last modified time | relevance | path

Searched refs:delay (Results 1 – 6 of 6) sorted by relevance

/net-tools-3.7.0/mbedtls-2.4.0/programs/test/
Dudp_proxy.c124 int delay; /* delay 1 packet in N (none if 0) */ member
180 opt.delay = atoi( q ); in get_options()
181 if( opt.delay < 0 || opt.delay > 20 || opt.delay == 1 ) in get_options()
439 ( opt.delay != 0 && in handle_message()
446 rand() % opt.delay == 0 ) ) in handle_message()
/net-tools-3.7.0/mbedtls-2.4.0/include/mbedtls/
Dssl_cookie.h87 void mbedtls_ssl_cookie_set_timeout( mbedtls_ssl_cookie_ctx *ctx, unsigned long delay );
/net-tools-3.7.0/libcoap/examples/
Dcoap-server.c219 unsigned long delay = 5; in hnd_get_async() local
235 delay = 0; in hnd_get_async()
237 delay = delay * 10 + (*p - '0'); in hnd_get_async()
244 (void *)(COAP_TICKS_PER_SECOND * delay)); in hnd_get_async()
Detsi_iot_01.c416 unsigned long delay = 5; in hnd_get_separate() local
442 delay = d < COAP_RESOURCE_CHECK_TIME_SEC in hnd_get_separate()
445 debug("set delay to %lu\n", delay); in hnd_get_separate()
451 (void *)(COAP_TICKS_PER_SECOND * delay)); in hnd_get_separate()
/net-tools-3.7.0/mbedtls-2.4.0/library/
Dssl_cookie.c91 void mbedtls_ssl_cookie_set_timeout( mbedtls_ssl_cookie_ctx *ctx, unsigned long delay ) in mbedtls_ssl_cookie_set_timeout() argument
93 ctx->timeout = delay; in mbedtls_ssl_cookie_set_timeout()
/net-tools-3.7.0/libcoap/src/
Dnet.c1741 coap_tick_t now, elapsed, delay; local
1754 delay = ctx->sendqueue->t - elapsed;
1767 delay = 0;
1770 printf("scheduling for %d ticks\n", delay);
1771 sys_timeout(delay, coap_retransmittimer_execute, (void*)ctx);