summaryrefslogtreecommitdiffstats
path: root/src/server/uplink.h
blob: 82412b44217b0cebe9a1d6c91630d7570f51d8f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _UPLINK_H_
#define _UPLINK_H_

#include "../types.h"
#include "globals.h"

extern dnbd3_alt_server_t *_alt_servers[SERVER_MAX_ALTS];
extern int _num_alts;
extern pthread_spinlock_t _alts_lock;

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

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

int uplink_init(dnbd3_image_t *image);

dnbd3_connection_t* uplink_shutdown( dnbd3_connection_t *uplink);

#endif /* UPLINK_H_ */