Lines Matching refs:req_method
2147 *req_method, /* HTTP request method */ in httpReadRequest() local
2208 req_method = line; in httpReadRequest()
2247 if (!strcmp(req_method, "OPTIONS")) in httpReadRequest()
2249 else if (!strcmp(req_method, "GET")) in httpReadRequest()
2251 else if (!strcmp(req_method, "HEAD")) in httpReadRequest()
2253 else if (!strcmp(req_method, "POST")) in httpReadRequest()
2255 else if (!strcmp(req_method, "PUT")) in httpReadRequest()
2257 else if (!strcmp(req_method, "DELETE")) in httpReadRequest()
2259 else if (!strcmp(req_method, "TRACE")) in httpReadRequest()
2261 else if (!strcmp(req_method, "CONNECT")) in httpReadRequest()
2265 DEBUG_printf(("1httpReadRequest: Unknown method \"%s\".", req_method)); in httpReadRequest()