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

No change was needed.
diff --git a/include/types/proto_udp.h b/include/haproxy/proto_udp-t.h
similarity index 91%
rename from include/types/proto_udp.h
rename to include/haproxy/proto_udp-t.h
index 2604418..04f8708 100644
--- a/include/types/proto_udp.h
+++ b/include/haproxy/proto_udp-t.h
@@ -1,5 +1,5 @@
 /*
- * include/types/proto_udp.h
+ * include/haproxy/proto_udp-t.h
  * This file provides structures and types for UDP protocol.
  *
  * Copyright (C) 2014 Baptiste Assmann <bedis9@gmail.com>
@@ -19,8 +19,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef _TYPES_PROTO_UDP_H
-#define _TYPES_PROTO_UDP_H
+#ifndef _HAPROXY_HAPROXY_UDP_T_H
+#define _HAPROXY_HAPROXY_UDP_T_H
 
 #include <arpa/inet.h>
 
@@ -49,4 +49,4 @@
 	void (*send)(struct dgram_conn *dgram); /* send callback */
 };
 
-#endif /* _TYPES_PROTO_UDP_H */
+#endif /* _HAPROXY_HAPROXY_UDP_T_H */
diff --git a/include/proto/proto_udp.h b/include/haproxy/proto_udp.h
similarity index 87%
rename from include/proto/proto_udp.h
rename to include/haproxy/proto_udp.h
index d1f0698..9f7178c 100644
--- a/include/proto/proto_udp.h
+++ b/include/haproxy/proto_udp.h
@@ -1,5 +1,5 @@
 /*
- * include/proto/proto_udp.h
+ * include/haproxy/proto_udp.h
  * This file provides functions related to UDP protocol.
  *
  * Copyright (C) 2014 Baptiste Assmann <bedis9@gmail.com>
@@ -19,9 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef _PROTO_PROTO_UDP_H
-#define _PROTO_PROTO_UDP_H
+#ifndef _HAPROXY_PROTO_UDP_H
+#define _HAPROXY_PROTO_UDP_H
 
 void dgram_fd_handler(int);
 
-#endif // _PROTO_PROTO_UDP_H
+#endif // _HAPROXY_PROTO_UDP_H
diff --git a/include/types/dns.h b/include/types/dns.h
index f504f5f..8b25352 100644
--- a/include/types/dns.h
+++ b/include/types/dns.h
@@ -29,7 +29,7 @@
 
 #include <types/connection.h>
 #include <types/obj_type.h>
-#include <types/proto_udp.h>
+#include <haproxy/proto_udp-t.h>
 #include <types/proxy.h>
 #include <types/server.h>
 #include <types/task.h>
diff --git a/src/checks.c b/src/checks.c
index 3d3fbd1..59c1760 100644
--- a/src/checks.c
+++ b/src/checks.c
@@ -68,7 +68,7 @@
 #include <proto/vars.h>
 #include <proto/log.h>
 #include <proto/dns.h>
-#include <proto/proto_udp.h>
+#include <haproxy/proto_udp.h>
 #include <proto/ssl_sock.h>
 #include <proto/sample.h>
 
diff --git a/src/dns.c b/src/dns.c
index a74bd36..79a7a0d 100644
--- a/src/dns.c
+++ b/src/dns.c
@@ -45,7 +45,7 @@
 #include <proto/sample.h>
 #include <proto/server.h>
 #include <proto/task.h>
-#include <proto/proto_udp.h>
+#include <haproxy/proto_udp.h>
 #include <proto/proxy.h>
 #include <proto/stream_interface.h>
 #include <proto/tcp_rules.h>
diff --git a/src/proto_udp.c b/src/proto_udp.c
index a1d9176..93c0389 100644
--- a/src/proto_udp.c
+++ b/src/proto_udp.c
@@ -12,7 +12,7 @@
 
 #include <types/global.h>
 #include <haproxy/fd-t.h>
-#include <types/proto_udp.h>
+#include <haproxy/proto_udp-t.h>
 
 #include <haproxy/fd.h>
 
diff --git a/src/tools.c b/src/tools.c
index fbec3f5..2b94793 100644
--- a/src/tools.c
+++ b/src/tools.c
@@ -48,7 +48,7 @@
 #include <proto/dns.h>
 #include <proto/hlua.h>
 #include <proto/listener.h>
-#include <proto/proto_udp.h>
+#include <haproxy/proto_udp.h>
 #include <proto/ssl_sock.h>
 #include <proto/stream_interface.h>
 #include <proto/task.h>