Fix regression introduced in previous causing HEAD requests to be
authoranton <anton@openbsd.org>
Sat, 20 Jul 2024 06:54:15 +0000 (06:54 +0000)
committeranton <anton@openbsd.org>
Sat, 20 Jul 2024 06:54:15 +0000 (06:54 +0000)
erroneously rejected as malformed.

ok chrisz@

usr.sbin/relayd/relay_http.c

index cc51fde..0c511d0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: relay_http.c,v 1.89 2024/07/19 04:26:23 chrisz Exp $  */
+/*     $OpenBSD: relay_http.c,v 1.90 2024/07/20 06:54:15 anton Exp $   */
 
 /*
  * Copyright (c) 2006 - 2016 Reyk Floeter <reyk@openbsd.org>
@@ -435,6 +435,10 @@ relay_read_http(struct bufferevent *bev, void *arg)
                                        kv_delete(&desc->http_headers,
                                            desc->http_lastheader);
                                        break;
+                               case HTTP_METHOD_RESPONSE:
+                                       if (request_method == HTTP_METHOD_HEAD)
+                                               break;
+                                       /* FALLTHROUGH */
                                default:
                                        /*
                                         * Need to read data from the client