summaryrefslogtreecommitdiffstats
path: root/src/server/altservers.h
blob: 7b7b46d8998bc8717d2a8cf3fd65a21530c75647 (plain) (blame)
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
26
27
28
29
30
#ifndef _ALTSERVERS_H_
#define _ALTSERVERS_H_

#include "globals.h"

struct json_t;

void altservers_init();

void altservers_shutdown();

int altservers_load();

bool altservers_add(dnbd3_host_t *host, const char *comment, const int isPrivate, const int isClientOnly);

void altservers_findUplink(dnbd3_connection_t *uplink);

void altservers_removeUplink(dnbd3_connection_t *uplink);

int altservers_getListForClient(dnbd3_host_t *host, dnbd3_server_entry_t *output, int size);

int altservers_getListForUplink(dnbd3_host_t *output, int size, int emergency);

int altservers_netCloseness(dnbd3_host_t *host1, dnbd3_host_t *host2);

void altservers_serverFailed(const dnbd3_host_t * const host);

struct json_t* altservers_toJson();

#endif /* UPLINK_CONNECTOR_H_ */