#define AJP_EBAD_MESSAGE (APR_OS_START_USERERR + 8)
/** Cant log via AJP14 */
#define AJP_ELOGFAIL (APR_OS_START_USERERR + 9)
-/** Bad request method */
-#define AJP_EBAD_METHOD (APR_OS_START_USERERR + 10)
/** A structure that represents ajp message */
conn->worker->s->hostname);
if (status == AJP_EOVERFLOW)
return HTTP_BAD_REQUEST;
- else if (status == AJP_EBAD_METHOD) {
- return HTTP_NOT_IMPLEMENTED;
- } else {
+ else {
/*
* This is only non fatal when the method is idempotent. In this
* case we can dare to retry it with a different worker if we are