BUG/MEDIUM: H2: Activate polling after successful h2_snd_buf().

Make sure h2_send() is called after h2_snd_buf() by activating polling.

This is 1.9-specific, no backport is needed.
diff --git a/src/mux_h2.c b/src/mux_h2.c
index 4a3150a..7824cfe 100644
--- a/src/mux_h2.c
+++ b/src/mux_h2.c
@@ -3531,6 +3531,8 @@
 	}
 
 	b_del(buf, total);
+	if (total > 0)
+		conn_xprt_want_send(h2s->h2c->conn);
 	return total;
 }