Searched refs:ua_len (Results 1 – 1 of 1) sorted by relevance
584 size_t ua_len; in php_stream_url_wrap_http_ex() local586 ua_len = sizeof(_UA_HEADER) + strlen(ua_str); in php_stream_url_wrap_http_ex()589 if (ua_len > sizeof(_UA_HEADER)) { in php_stream_url_wrap_http_ex()590 ua = emalloc(ua_len + 1); in php_stream_url_wrap_http_ex()591 if ((ua_len = slprintf(ua, ua_len, _UA_HEADER, ua_str)) > 0) { in php_stream_url_wrap_http_ex()592 ua[ua_len] = 0; in php_stream_url_wrap_http_ex()593 smart_str_appendl(&req_buf, ua, ua_len); in php_stream_url_wrap_http_ex()
Completed in 6 milliseconds