REORG: include: split common/htx.h into haproxy/htx{,-t}.h

Most of the file was a large set of HTX elements manipulation functions
and few types, so splitting them allowed to further reduce dependencies
and shrink the build time. Doing so revealed that a few files (h2.c,
mux_pt.c) needed haproxy/buf.h and were previously getting it through
htx.h. They were fixed.
diff --git a/src/mux_h1.c b/src/mux_h1.c
index 09bf871..4afaa29 100644
--- a/src/mux_h1.c
+++ b/src/mux_h1.c
@@ -14,7 +14,7 @@
 #include <common/cfgparse.h>
 #include <haproxy/h1.h>
 #include <common/h2.h>
-#include <common/htx.h>
+#include <haproxy/htx.h>
 
 #include <import/ebistree.h>