| 5637 | } |
| 5638 | |
| 5639 | static int core_upgrade_storage(request_rec *r) |
| 5640 | { |
| 5641 | if ((r->method_number == M_OPTIONS) && r->uri && (r->uri[0] == '*') && |
| 5642 | (r->uri[1] == '\0')) { |
| 5643 | return core_upgrade_handler(r); |
| 5644 | } |
| 5645 | return DECLINED; |
| 5646 | } |
| 5647 | |
| 5648 | static apr_status_t core_get_pollfd_from_conn(conn_rec *c, |
| 5649 | struct apr_pollfd_t *pfd, |
nothing calls this directly
no test coverage detected