Home
last modified time | relevance | path

Searched refs:ttl (Results 1 – 2 of 2) sorted by relevance

/php-uv/
H A DREADME.md1200 ### void uv_udp_set_multicast_ttl(resource $handle, long $ttl)
1204 set multicast ttl
1210 *long $ttl*: multicast ttl
H A Dphp_uv.c3064 ZEND_ARG_INFO(0, ttl)
4549 zend_long ttl = 0; /* 1 through 255 */ local
4554 Z_PARAM_LONG(ttl)
4557 if (ttl > 255) {
4559 ttl = 255;
4560 } else if (ttl < 1) {
4562 ttl = 1;
4565 r = uv_udp_set_multicast_ttl(&uv->uv.udp, ttl);

Completed in 20 milliseconds