Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/
H A Dhttp_fopen_wrapper.c593 size_t ua_len; in php_stream_url_wrap_http_ex() local
595 ua_len = sizeof(_UA_HEADER) + strlen(ua_str); in php_stream_url_wrap_http_ex()
598 if (ua_len > sizeof(_UA_HEADER)) { in php_stream_url_wrap_http_ex()
599 ua = emalloc(ua_len + 1); in php_stream_url_wrap_http_ex()
600 if ((ua_len = slprintf(ua, ua_len, _UA_HEADER, ua_str)) > 0) { in php_stream_url_wrap_http_ex()
601 ua[ua_len] = 0; in php_stream_url_wrap_http_ex()
602 smart_str_appendl(&req_buf, ua, ua_len); in php_stream_url_wrap_http_ex()

Completed in 7 milliseconds