Home
last modified time | relevance | path

Searched refs:ka_time (Results 1 – 8 of 8) sorted by relevance

/external/libwebsockets/lib/plat/freertos/
Dfreertos-sockets.c91 if (vhost->ka_time) { in lws_plat_set_socket_options()
109 optval = vhost->ka_time; in lws_plat_set_socket_options()
/external/libwebsockets/lib/plat/unix/
Dunix-sockets.c105 if (!unix_skt && vhost->ka_time) { in lws_plat_set_socket_options()
126 optval = 1000 * (vhost->ka_time + in lws_plat_set_socket_options()
132 optval = vhost->ka_time; in lws_plat_set_socket_options()
/external/libwebsockets/lib/plat/windows/
Dwindows-sockets.c95 if (vhost->ka_time) { in lws_plat_set_socket_options()
106 alive.keepalivetime = vhost->ka_time * 1000; in lws_plat_set_socket_options()
/external/libwebsockets/include/libwebsockets/
Dlws-context-vhost.h346 int ka_time; member
/external/libwebsockets/lib/core-net/
Dvhost.c781 vh->ka_time = info->ka_time; in lws_create_vhost()
Dprivate-lib-core-net.h588 int ka_time; member
/external/libwebsockets/lib/core/
Dcontext.c598 if (!info->ka_interval && info->ka_time > 0) { in lws_create_context()
/external/libwebsockets/READMEs/
DREADME.coding.md561 To enable keepalive, set the ka_time member of the context creation parameter
572 value in `ka_time`, but the systemwide kernel settings for the time / probes/
573 interval are used, regardless of what nonzero value is in `ka_time`.