MINOR: buffer: convert most b_ptr() calls to c_ptr()

The latter uses the channel wherever a channel is known.
diff --git a/src/backend.c b/src/backend.c
index 70972b4..ea266f3 100644
--- a/src/backend.c
+++ b/src/backend.c
@@ -322,7 +322,7 @@
 	struct proxy    *px   = s->be;
 	unsigned int     plen = px->url_param_len;
 	unsigned long    len  = http_body_bytes(msg);
-	const char      *params = b_ptr(req->buf, -http_data_rewind(msg));
+	const char      *params = c_ptr(req, -http_data_rewind(msg));
 	const char      *p    = params;
 	const char      *start, *end;
 
@@ -412,7 +412,7 @@
 	ctx.idx = 0;
 
 	/* if the message is chunked, we skip the chunk size, but use the value as len */
-	http_find_header2(px->hh_name, plen, b_ptr(s->req.buf, -http_hdr_rewind(&txn->req)), &txn->hdr_idx, &ctx);
+	http_find_header2(px->hh_name, plen, c_ptr(&s->req, -http_hdr_rewind(&txn->req)), &txn->hdr_idx, &ctx);
 
 	/* if the header is not found or empty, let's fallback to round robin */
 	if (!ctx.idx || !ctx.vlen)
@@ -669,7 +669,7 @@
 				if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY)
 					break;
 				srv = get_server_uh(s->be,
-						    b_ptr(s->req.buf, -http_uri_rewind(&s->txn->req)),
+						    c_ptr(&s->req, -http_uri_rewind(&s->txn->req)),
 						    s->txn->req.sl.rq.u_l);
 				break;
 
@@ -679,7 +679,7 @@
 					break;
 
 				srv = get_server_ph(s->be,
-						    b_ptr(s->req.buf, -http_uri_rewind(&s->txn->req)),
+						    c_ptr(&s->req, -http_uri_rewind(&s->txn->req)),
 						    s->txn->req.sl.rq.u_l);
 
 				if (!srv && s->txn->meth == HTTP_METH_POST)