summaryrefslogtreecommitdiffstats
path: root/include/haproxy/guid-t.h
blob: 9eea355d174e09ee03b481ff7b0ee814c625cc70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 */