blob: e9a47602a0894208dcd9a6f50074f245b6ab8ccd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _UPLINK_H_
#define _UPLINK_H_
#include "../types.h"
#include "globals.h"
int uplink_init(dnbd3_image_t *image, int sock, dnbd3_host_t *host);
void uplink_removeClient(dnbd3_connection_t *uplink, dnbd3_client_t *client);
int uplink_request(dnbd3_client_t *client, uint64_t handle, uint64_t start, uint32_t length);
void uplink_shutdown(dnbd3_image_t *image);
#endif /* UPLINK_H_ */
|