summaryrefslogtreecommitdiffstats
path: root/src/registry.h
blob: c2b57a23df4c1c6f4c86968d3bc992ee16de111b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef NETDATA_REGISTRY_H
#define NETDATA_REGISTRY_H 1

#define NETDATA_REGISTRY_COOKIE_NAME "netdata_registry_id"

extern void registry_set_cookie(struct web_client *w, const char *guid);
extern const char *registry_to_announce(void);
extern int registry_verify_cookies_redirects(void);

extern int registry_request_access_json(struct web_client *w, char *person_guid, char *machine_guid, char *url, char *name, time_t when);
extern int registry_request_delete_json(struct web_client *w, char *person_guid, char *machine_guid, char *url, char *delete_url, time_t when);
extern int registry_request_search_json(struct web_client *w, char *person_guid, char *machine_guid, char *url, char *request_machine, time_t when);
extern int registry_request_switch_json(struct web_client *w, char *person_guid, char *machine_guid, char *url, char *new_person_guid, time_t when);
extern int registry_request_hello_json(struct web_client *w);

extern int registry_init(void);
extern void registry_free(void);
extern int registry_save(void);

extern char *registry_get_this_machine_guid(void);

extern void registry_statistics(void);


#endif /* NETDATA_REGISTRY_H */