BUG/MINOR: http_fetch/htx: Use HTX versions if the proxy enables the HTX mode

Because the HTX is now the default mode for all proxies (HTTP and TCP), it is
better to match on the proxy options to know if the HTX is enabled or not. This
way, if a TCP proxy explicitly disables the HTX mode, the legacy version of HTTP
fetches will be used.

No backport needed except if the patch activating the HTX by default for all
proxies is backported.
diff --git a/src/http_fetch.c b/src/http_fetch.c
index 2d639f2..3e6f4d1 100644
--- a/src/http_fetch.c
+++ b/src/http_fetch.c
@@ -415,7 +415,7 @@
 	int meth;
 	struct http_txn *txn;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 0);
 
@@ -469,7 +469,7 @@
 	char *ptr;
 	int len;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct htx_sl *sl;
@@ -509,7 +509,7 @@
 	char *ptr;
 	int len;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct htx_sl *sl;
@@ -550,7 +550,7 @@
 	char *ptr;
 	int len;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct htx_sl *sl;
@@ -605,7 +605,7 @@
 	struct channel *chn = SMP_REQ_CHN(smp);
 	struct http_txn *txn;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct buffer *temp;
@@ -673,7 +673,7 @@
 	struct http_txn *txn;
 	struct buffer *temp;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct buffer *temp;
@@ -834,7 +834,7 @@
 	struct channel *chn = SMP_REQ_CHN(smp);
 	struct buffer *temp;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		int32_t pos;
@@ -905,7 +905,7 @@
 {
 	struct channel *chn = SMP_REQ_CHN(smp);
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		int32_t pos;
@@ -953,7 +953,7 @@
 {
 	struct channel *chn = SMP_REQ_CHN(smp);
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		int32_t pos;
@@ -1001,7 +1001,7 @@
 	struct channel *chn = SMP_REQ_CHN(smp);
 	struct http_txn *txn;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct htx_sl *sl;
@@ -1033,7 +1033,7 @@
 	struct http_txn *txn;
 	struct sockaddr_storage addr;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct htx_sl *sl;
@@ -1066,7 +1066,7 @@
 	struct http_txn *txn;
 	struct sockaddr_storage addr;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct htx_sl *sl;
@@ -1105,7 +1105,7 @@
 	struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
 	int occ = 0;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct http_hdr_ctx *ctx = smp->ctx.a[0];
@@ -1209,7 +1209,7 @@
 	struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
 	int cnt;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct http_hdr_ctx ctx;
@@ -1268,7 +1268,7 @@
 	struct buffer *temp;
 	char del = ',';
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		int32_t pos;
@@ -1339,7 +1339,7 @@
 	struct channel *chn = ((kw[0] == 'h' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
 	int occ = 0;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct http_hdr_ctx *ctx = smp->ctx.a[0];
@@ -1443,7 +1443,7 @@
 	struct channel *chn = ((kw[0] == 'h' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
 	int cnt;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct http_hdr_ctx ctx;
@@ -1552,7 +1552,7 @@
 {
 	struct channel *chn = SMP_REQ_CHN(smp);
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct htx_sl *sl;
@@ -1613,7 +1613,7 @@
 	struct channel *chn = SMP_REQ_CHN(smp);
 	struct buffer *temp;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct htx_sl *sl;
@@ -1699,7 +1699,7 @@
 	struct channel *chn = SMP_REQ_CHN(smp);
 	unsigned int hash = 0;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct htx_sl *sl;
@@ -1825,7 +1825,7 @@
 	struct channel *chn = SMP_REQ_CHN(smp);
 	char *ptr, *end;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct htx_sl *sl;
@@ -1865,7 +1865,7 @@
 {
 	struct channel *chn = SMP_REQ_CHN(smp);
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 0);
 
@@ -1901,7 +1901,7 @@
 	if (!args || args->type != ARGT_USR)
 		return 0;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 
@@ -1929,7 +1929,7 @@
 	if (!args || args->type != ARGT_USR)
 		return 0;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 
@@ -2137,7 +2137,7 @@
 	if (!args || args->type != ARGT_STR)
 		return 0;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct http_hdr_ctx *ctx = smp->ctx.a[2];
@@ -2303,7 +2303,7 @@
 	if (!args || args->type != ARGT_STR)
 		return 0;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct http_hdr_ctx ctx;
@@ -2494,7 +2494,7 @@
 		delim = *args[1].data.str.area;
 
 	if (!smp->ctx.a[0]) { // first call, find the query string
-		if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+		if (smp->px->options2 & PR_O2_USE_HTX) {
 			/* HTX version */
 			struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 			struct htx_sl *sl;
@@ -2559,7 +2559,7 @@
 	}
 
 	if (!smp->ctx.a[0]) { // first call, find the query string
-		if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+		if (smp->px->options2 & PR_O2_USE_HTX) {
 			/* HTX version */
 			struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 			struct buffer *temp;
@@ -2662,7 +2662,7 @@
 	struct channel *chn = SMP_REQ_CHN(smp);
 	unsigned int hash = 0;
 
-	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
+	if (smp->px->options2 & PR_O2_USE_HTX) {
 		/* HTX version */
 		struct htx *htx = smp_prefetch_htx(smp, chn, 1);
 		struct http_hdr_ctx ctx;