Final name is Vitastor
This commit is contained in:
+8
-8
@@ -1,5 +1,5 @@
|
||||
#ifndef FALCON_QEMU_PROXY_H
|
||||
#define FALCON_QEMU_PROXY_H
|
||||
#ifndef VITASTOR_QEMU_PROXY_H
|
||||
#define VITASTOR_QEMU_PROXY_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <sys/uio.h>
|
||||
@@ -9,12 +9,12 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
// Our exports
|
||||
typedef void FalconIOHandler(int retval, void *opaque);
|
||||
void* falcon_proxy_create(AioContext *ctx, const char *etcd_host, const char *etcd_prefix);
|
||||
void falcon_proxy_destroy(void *client);
|
||||
void falcon_proxy_rw(int write, void *client, uint64_t inode, uint64_t offset, uint64_t len,
|
||||
struct iovec *iov, int iovcnt, FalconIOHandler cb, void *opaque);
|
||||
void falcon_proxy_sync(void *client, FalconIOHandler cb, void *opaque);
|
||||
typedef void VitastorIOHandler(int retval, void *opaque);
|
||||
void* vitastor_proxy_create(AioContext *ctx, const char *etcd_host, const char *etcd_prefix);
|
||||
void vitastor_proxy_destroy(void *client);
|
||||
void vitastor_proxy_rw(int write, void *client, uint64_t inode, uint64_t offset, uint64_t len,
|
||||
struct iovec *iov, int iovcnt, VitastorIOHandler cb, void *opaque);
|
||||
void vitastor_proxy_sync(void *client, VitastorIOHandler cb, void *opaque);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user