MINOR: quic: simplify copy of STREAM frames to RX buffer

qc_strm_cpy can be simplified by simply using b_putblk which already
handle wrapping of the destination buffer. The function is kept to
update the frame length and offset fields.
diff --git a/src/xprt_quic.c b/src/xprt_quic.c
index 084afae..a1b89c7 100644
--- a/src/xprt_quic.c
+++ b/src/xprt_quic.c
@@ -1976,22 +1976,9 @@
 {
 	size_t ret;
 
-	ret = 0;
-	while (strm_frm->len) {
-		size_t try;
-
-		try = b_contig_space(buf);
-		if (!try)
-			break;
-
-		if (try > strm_frm->len)
-			try = strm_frm->len;
-		memcpy(b_tail(buf), strm_frm->data, try);
-		strm_frm->len -= try;
-		strm_frm->offset.key += try;
-		b_add(buf, try);
-		ret += try;
-	}
+	ret = b_putblk(buf, (char *)strm_frm->data, strm_frm->len);
+	strm_frm->len -= ret;
+	strm_frm->offset.key += ret;
 
 	return ret;
 }