REORG: proto_htx: Move HTX analyzers & co to http_ana.{c,h} files

The old module proto_http does not exist anymore. All code dedicated to the HTTP
analysis is now grouped in the file proto_htx.c. So, to finish the polishing
after removing the legacy HTTP code, proto_htx.{c,h} files have been moved in
http_ana.{c,h} files.

In addition, all HTX analyzers and related functions prefixed with "htx_" have
been renamed to start with "http_" instead.
diff --git a/include/types/hlua.h b/include/types/hlua.h
index 70c7685..6a78292 100644
--- a/include/types/hlua.h
+++ b/include/types/hlua.h
@@ -9,7 +9,7 @@
 #include <common/regex.h>
 #include <common/xref.h>
 
-#include <types/proto_http.h>
+#include <types/http_ana.h>
 #include <types/proxy.h>
 #include <types/server.h>
 #include <types/stick_table.h>
diff --git a/include/types/proto_http.h b/include/types/http_ana.h
similarity index 99%
rename from include/types/proto_http.h
rename to include/types/http_ana.h
index 5125879..4173725 100644
--- a/include/types/proto_http.h
+++ b/include/types/http_ana.h
@@ -1,5 +1,5 @@
 /*
- * include/types/proto_http.h
+ * include/types/http_ana.h
  * This file contains HTTP protocol definitions.
  *
  * Copyright (C) 2000-2011 Willy Tarreau - w@1wt.eu
diff --git a/include/types/stream.h b/include/types/stream.h
index 114b70a..c889345 100644
--- a/include/types/stream.h
+++ b/include/types/stream.h
@@ -35,7 +35,7 @@
 #include <types/filters.h>
 #include <types/hlua.h>
 #include <types/obj_type.h>
-#include <types/proto_http.h>
+#include <types/http_ana.h>
 #include <types/proxy.h>
 #include <types/queue.h>
 #include <types/server.h>