MINOR: mux-quic: send one last time before release

Call qc_send() on qc_release(). This is mostly useful for application
protocol with a connection closing procedure. Most notably, this will be
useful to implement HTTP/3 GOAWAY emission.
diff --git a/src/mux_quic.c b/src/mux_quic.c
index 74f91d9..ff0b8ea 100644
--- a/src/mux_quic.c
+++ b/src/mux_quic.c
@@ -1601,6 +1601,11 @@
 		 * procedure.
 		 */
 		qcc->app_ops->release(qcc->ctx);
+
+		/* useful if application protocol should emit some closing
+		 * frames. For example HTTP/3 GOAWAY frame.
+		 */
+		qc_send(qcc);
 	}
 	else {
 		qcc_emit_cc_app(qcc, QC_ERR_NO_ERROR, 0);