summaryrefslogtreecommitdiffstats
path: root/src/server/server.h
diff options
context:
space:
mode:
authorsr2013-07-11 19:43:24 +0200
committersr2013-07-11 19:43:24 +0200
commitf10e60d3c16252cd448cc394ee2eb324e8a45572 (patch)
tree2d5ba7fcd0b38daf4cbd31251ee94b76d4430414 /src/server/server.h
parentRewrite in progres.... (diff)
downloaddnbd3-f10e60d3c16252cd448cc394ee2eb324e8a45572.tar.gz
dnbd3-f10e60d3c16252cd448cc394ee2eb324e8a45572.tar.xz
dnbd3-f10e60d3c16252cd448cc394ee2eb324e8a45572.zip
Rewrite still in progres....
Diffstat (limited to 'src/server/server.h')
-rw-r--r--src/server/server.h27
1 files changed, 1 insertions, 26 deletions
diff --git a/src/server/server.h b/src/server/server.h
index 410cc60..b512737 100644
--- a/src/server/server.h
+++ b/src/server/server.h
@@ -28,32 +28,7 @@
#include "../config.h"
#include "../types.h"
-typedef struct
-{
- int fd;
-} dnbd3_connection_t;
-
-/**
- * Image struct. An image path could be something like
- * /mnt/images/rz/zfs/Windows7 ZfS.vmdk.1
- * and the lower_name would then be
- * rz/zfs/windows7 zfs.vmdk
- */
-typedef struct
-{
- char *path; // absolute path of the image
- char *lower_name; // relative path, all lowercase, minus revision ID
- uint8_t *cache_map; // cache map telling which parts are locally cached
- dnbd3_connection_t *uplink; // NULL = local image / completely cached, pointer to a server connection otherwise
- uint64_t filesize; // size of image
- int rid; // revision of image
- int users; // clients currently using this image
- time_t atime; // last access time
- char working; // TRUE if image exists and completeness is == 100% or a working upstream proxy is connected
- time_t delete_soft; // unixtime telling when this image should be deleted. if there are still clients using this image it weill be kept, but new clients requesting the image will be rejected. 0 = never
- time_t delete_hard; // unixtime telling when this image should be deleted, no matter if there are still clients connected. 0 = never
- pthread_spinlock_t lock;
-} dnbd3_image_t;
+struct dnbd3_image_t;
typedef struct
{