summaryrefslogtreecommitdiffstats
path: root/src/bench/connection.h
blob: 422c93e89faa71c2eb249915229b0a7d9a84c517 (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
#ifndef _CONNECTION_H_
#define _CONNECTION_H_

#include <dnbd3/shared/fdsignal.h>
#include <stdbool.h>
#include <stdint.h>
#include "helper.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;
	dnbd3_signal_t* signal; // 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_n_times(const char *hosts, const char *image, const uint16_t rid, int ntimes, uint64_t blockSize, BenchCounters* counters);

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

#endif /* CONNECTION_H_ */