MEDIUM: mux-h2: make use of hpack_encode_path() to encode the path

The HTTP path encoding was open-coded with a HPACK byte matching the
"/" or "/index.html" paths. Let's make use of the new functions to
avoid this.
diff --git a/src/mux_h2.c b/src/mux_h2.c
index 80a6fe0..15fd304 100644
--- a/src/mux_h2.c
+++ b/src/mux_h2.c
@@ -4077,13 +4077,7 @@
 	}
 
 	/* encode the path, which necessarily is the second one */
-	if (outbuf.data < outbuf.size && isteq(path, ist("/"))) {
-		outbuf.area[outbuf.data++] = 0x84; // indexed field : idx[04]=(":path", "/")
-	}
-	else if (outbuf.data < outbuf.size && isteq(path, ist("/index.html"))) {
-		outbuf.area[outbuf.data++] = 0x85; // indexed field : idx[04]=(":path", "/index.html")
-	}
-	else if (!hpack_encode_header(&outbuf, ist(":path"), path)) {
+	if (!hpack_encode_path(&outbuf, path)) {
 		/* output full */
 		if (b_space_wraps(&h2c->mbuf))
 			goto realign_again;