Return TRUE if string "str2" occurs literally in "str1" */
| 807 | |
| 808 | /* Return TRUE if string "str2" occurs literally in "str1" */ |
| 809 | static int proxy_match_word(struct dirconn_entry *This, request_rec *r) |
| 810 | { |
| 811 | const char *host = proxy_get_host_of_request(r); |
| 812 | return host != NULL && ap_strstr_c(host, This->name) != NULL; |
| 813 | } |
| 814 | |
| 815 | /* Backwards-compatible interface. */ |
| 816 | PROXY_DECLARE(int) ap_proxy_checkproxyblock(request_rec *r, proxy_server_conf *conf, |
nothing calls this directly
no test coverage detected