mirror of
https://github.com/apache/httpd.git
synced 2025-08-20 16:09:55 +00:00
write Ok to tomcat.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@764804 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -440,7 +440,13 @@ static int hm_handler(request_rec *r)
|
||||
}
|
||||
apr_brigade_flatten(input_brigade, buf, &len);
|
||||
hm_processmsg(ctx, r->pool, r->connection->remote_addr, buf, len);
|
||||
return HTTP_OK;
|
||||
|
||||
ap_set_content_type(r, "text/plain");
|
||||
ap_set_content_length(r, 2);
|
||||
ap_rprintf(r, "OK");
|
||||
ap_rflush(r);
|
||||
|
||||
return OK;
|
||||
}
|
||||
|
||||
static void hm_register_hooks(apr_pool_t *p)
|
||||
|
Reference in New Issue
Block a user