Searched refs:ua_len (Results 1 – 1 of 1) sorted by relevance
591 size_t ua_len; in php_stream_url_wrap_http_ex() local593 ua_len = sizeof(_UA_HEADER) + strlen(ua_str); in php_stream_url_wrap_http_ex()596 if (ua_len > sizeof(_UA_HEADER)) { in php_stream_url_wrap_http_ex()597 ua = emalloc(ua_len + 1); in php_stream_url_wrap_http_ex()598 if ((ua_len = slprintf(ua, ua_len, _UA_HEADER, ua_str)) > 0) { in php_stream_url_wrap_http_ex()599 ua[ua_len] = 0; in php_stream_url_wrap_http_ex()600 smart_str_appendl(&req_buf, ua, ua_len); in php_stream_url_wrap_http_ex()
Completed in 8 milliseconds