Home
last modified time | relevance | path

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

/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_request.c1823 msie = ngx_strstrn(user_agent, "MSIE ", 5 - 1); in ngx_http_process_user_agent()
1837 if (ngx_strstrn(msie + 8, "SV1", 3 - 1) == NULL) { in ngx_http_process_user_agent()
1852 if (ngx_strstrn(user_agent, "Opera", 5 - 1)) { in ngx_http_process_user_agent()
1860 if (ngx_strstrn(user_agent, "Gecko/", 6 - 1)) { in ngx_http_process_user_agent()
1863 } else if (ngx_strstrn(user_agent, "Chrome/", 7 - 1)) { in ngx_http_process_user_agent()
1866 } else if (ngx_strstrn(user_agent, "Safari/", 7 - 1) in ngx_http_process_user_agent()
1867 && ngx_strstrn(user_agent, "Mac OS X", 8 - 1)) in ngx_http_process_user_agent()
1871 } else if (ngx_strstrn(user_agent, "Konqueror", 9 - 1)) { in ngx_http_process_user_agent()
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_string.h166 u_char *ngx_strstrn(u_char *s1, char *s2, size_t n);
H A Dngx_string.c682 ngx_strstrn(u_char *s1, char *s2, size_t n) in ngx_strstrn() function