blob: cbe99e2dec58d360e81d064a9da76f18f096fccf (
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
|
#ifndef _ALTSERVERS_H_
#define _ALTSERVERS_H_
#include "globals.h"
void altservers_init();
void altservers_shutdown();
int altservers_load();
int altservers_add(dnbd3_host_t *host, const char *comment, const int isPrivate, const int isClientOnly);
void altservers_findUplink(dnbd3_connection_t *uplink);
int altservers_getMatching(dnbd3_host_t *host, dnbd3_server_entry_t *output, int size);
int altservers_get(dnbd3_host_t *output, int size);
int altservers_netCloseness(dnbd3_host_t *host1, dnbd3_host_t *host2);
void altservers_serverFailed(const dnbd3_host_t * const host);
#endif /* UPLINK_CONNECTOR_H_ */
|