REORG: include: move ring to haproxy/ring{,-t}.h

Some includes were wrong in the type definition but beyond this no
change was needed.
diff --git a/include/types/ring.h b/include/haproxy/ring-t.h
similarity index 95%
rename from include/types/ring.h
rename to include/haproxy/ring-t.h
index b512b07..e1f9468 100644
--- a/include/types/ring.h
+++ b/include/haproxy/ring-t.h
@@ -1,5 +1,5 @@
 /*
- * include/types/ring.h
+ * include/haproxy/ring-t.h
  * This file provides definitions for ring buffers used for disposable data.
  *
  * Copyright (C) 2000-2019 Willy Tarreau - w@1wt.eu
@@ -19,12 +19,13 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef _TYPES_RING_H
-#define _TYPES_RING_H
+#ifndef _HAPROXY_RING_T_H
+#define _HAPROXY_RING_T_H
 
 #include <haproxy/api-t.h>
 #include <haproxy/buf-t.h>
-#include <import/ist.h>
+#include <haproxy/list-t.h>
+#include <haproxy/thread.h>
 
 /* The code below handles circular buffers with single-producer and multiple
  * readers (up to 255). The buffer storage area must remain always allocated.
@@ -100,7 +101,7 @@
 	int readers_count;
 };
 
-#endif /* _TYPES_RING_H */
+#endif /* _HAPROXY_RING_T_H */
 
 /*
  * Local variables:
diff --git a/include/proto/ring.h b/include/haproxy/ring.h
similarity index 87%
rename from include/proto/ring.h
rename to include/haproxy/ring.h
index 6f393fe..aa3a3c6 100644
--- a/include/proto/ring.h
+++ b/include/haproxy/ring.h
@@ -1,6 +1,6 @@
 /*
- * include/proto/ring.h
- * This file provides definitions for ring buffers used for disposable data.
+ * include/haproxy/ring.h
+ * Exported functions for ring buffers used for disposable data.
  *
  * Copyright (C) 2000-2019 Willy Tarreau - w@1wt.eu
  *
@@ -19,12 +19,12 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef _PROTO_RING_H
-#define _PROTO_RING_H
+#ifndef _HAPROXY_RING_H
+#define _HAPROXY_RING_H
 
 #include <stdlib.h>
 #include <import/ist.h>
-#include <types/ring.h>
+#include <haproxy/ring-t.h>
 
 struct ring *ring_new(size_t size);
 struct ring *ring_resize(struct ring *ring, size_t size);
@@ -36,7 +36,7 @@
 int cli_io_handler_show_ring(struct appctx *appctx);
 void cli_io_release_show_ring(struct appctx *appctx);
 
-#endif /* _PROTO_RING_H */
+#endif /* _HAPROXY_RING_H */
 
 /*
  * Local variables:
diff --git a/include/types/log.h b/include/types/log.h
index cfafb91..28992db 100644
--- a/include/types/log.h
+++ b/include/types/log.h
@@ -28,7 +28,7 @@
 #include <haproxy/api-t.h>
 #include <haproxy/thread.h>
 #include <haproxy/list-t.h>
-#include <types/ring.h>
+#include <haproxy/ring-t.h>
 
 #define NB_LOG_FACILITIES       24
 #define NB_LOG_LEVELS           8
diff --git a/src/log.c b/src/log.c
index b036c99..08a84ce 100644
--- a/src/log.c
+++ b/src/log.c
@@ -39,7 +39,7 @@
 #include <haproxy/fd.h>
 #include <proto/frontend.h>
 #include <proto/log.h>
-#include <proto/ring.h>
+#include <haproxy/ring.h>
 #include <proto/sample.h>
 #include <proto/sink.h>
 #include <proto/ssl_sock.h>
diff --git a/src/ring.c b/src/ring.c
index ee72bb1..0972251 100644
--- a/src/ring.c
+++ b/src/ring.c
@@ -24,7 +24,7 @@
 #include <haproxy/thread.h>
 #include <types/applet.h>
 #include <proto/cli.h>
-#include <proto/ring.h>
+#include <haproxy/ring.h>
 #include <proto/stream_interface.h>
 
 /* Creates and returns a ring buffer of size <size> bytes. Returns NULL on
diff --git a/src/sink.c b/src/sink.c
index b5ecdde..4801fcb 100644
--- a/src/sink.c
+++ b/src/sink.c
@@ -25,7 +25,7 @@
 #include <haproxy/time.h>
 #include <proto/cli.h>
 #include <proto/log.h>
-#include <proto/ring.h>
+#include <haproxy/ring.h>
 #include <proto/signal.h>
 #include <proto/sink.h>
 #include <proto/stream_interface.h>