summaryrefslogblamecommitdiffstats
path: root/src/fuse/connection.h
blob: 076704dda7a5a8553ad1f6bc4294b2bd2fe32491 (plain) (tree)



















                                                                                                 

                                   




                                             
#ifndef _CONNECTION_H_
#define _CONNECTION_H_

#include <stdbool.h>
#include <stdint.h>

struct _dnbd3_async;

typedef struct _dnbd3_async {
	struct _dnbd3_async *next; // Next in this linked list (provate field, not set by caller)
	char* buffer;      // Caller-provided buffer to be filled
	uint64_t offset;
	uint32_t length;
	int signalFd;      // Used to signal the caller
	bool finished;     // Will be set to true if the request has been handled
	bool success;      // Will be set to true if the request succeeded
} dnbd3_async_t;

bool connection_init(const char *hosts, const char *image, const uint16_t rid);

uint64_t connection_getImageSize();

bool connection_read(dnbd3_async_t *request);

void connection_close();

#endif /* CONNECTION_H_ */