summaryrefslogtreecommitdiffstats
path: root/include/haproxy/guid-t.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/haproxy/guid-t.h')
-rw-r--r--include/haproxy/guid-t.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/haproxy/guid-t.h b/include/haproxy/guid-t.h
new file mode 100644
index 0000000..9eea355
--- /dev/null
+++ b/include/haproxy/guid-t.h
@@ -0,0 +1,15 @@
+#ifndef _HAPROXY_GUID_T_H
+#define _HAPROXY_GUID_T_H
+
+#include <import/ebtree-t.h>
+#include <haproxy/obj_type-t.h>
+
+/* Maximum GUID size excluding final '\0' */
+#define GUID_MAX_LEN 127
+
+struct guid_node {
+ struct ebpt_node node; /* attach point into GUID global tree */
+ enum obj_type *obj_type; /* pointer to GUID obj owner */
+};
+
+#endif /* _HAPROXY_GUID_T_H */