CLEANUP: frontend: remove the old proxy protocol decoder

This one used to rely on a stream analyser which was inappropriate.
It's not used anymore.
diff --git a/include/proto/frontend.h b/include/proto/frontend.h
index 3f67d4f..28bec23 100644
--- a/include/proto/frontend.h
+++ b/include/proto/frontend.h
@@ -26,7 +26,6 @@
 #include <types/session.h>
 
 int frontend_accept(struct session *s);
-int frontend_decode_proxy_request(struct session *s, struct channel *req, int an_bit);
 int make_proxy_line(char *buf, int buf_len, struct sockaddr_storage *src, struct sockaddr_storage *dst);
 
 
diff --git a/include/types/channel.h b/include/types/channel.h
index c68f4f7..a21e13f 100644
--- a/include/types/channel.h
+++ b/include/types/channel.h
@@ -140,7 +140,7 @@
  * The field is blanked by channel_init() and only by analysers themselves
  * afterwards.
  */
-#define AN_REQ_DECODE_PROXY     0x00000001  /* take the proxied address from a 'PROXY' line */
+/* unused: 0x00000001 */
 #define AN_REQ_INSPECT_FE       0x00000002  /* inspect request contents in the frontend */
 #define AN_REQ_WAIT_HTTP        0x00000004  /* wait for an HTTP request */
 #define AN_REQ_HTTP_PROCESS_FE  0x00000008  /* process the frontend's HTTP part */