Return TRUE if addr is to be matched as a word */
| 800 | |
| 801 | /* Return TRUE if addr is to be matched as a word */ |
| 802 | PROXY_DECLARE(int) ap_proxy_is_word(struct dirconn_entry *This, apr_pool_t *p) |
| 803 | { |
| 804 | This->matcher = proxy_match_word; |
| 805 | return 1; |
| 806 | } |
| 807 | |
| 808 | /* Return TRUE if string "str2" occurs literally in "str1" */ |
| 809 | static int proxy_match_word(struct dirconn_entry *This, request_rec *r) |