summaryrefslogtreecommitdiffstats
path: root/src/server/image.h
diff options
context:
space:
mode:
authorsr2013-07-15 20:46:42 +0200
committersr2013-07-15 20:46:42 +0200
commit2c9731d63810c839c8040d9d7131326ad48d515b (patch)
tree5350a04a8f39b07e2c70bb54af99aebbaf0c8b94 /src/server/image.h
parentRewriiiiiiiiite (diff)
downloaddnbd3-2c9731d63810c839c8040d9d7131326ad48d515b.tar.gz
dnbd3-2c9731d63810c839c8040d9d7131326ad48d515b.tar.xz
dnbd3-2c9731d63810c839c8040d9d7131326ad48d515b.zip
"It's compiling!"
Diffstat (limited to 'src/server/image.h')
-rw-r--r--src/server/image.h29
1 files changed, 2 insertions, 27 deletions
diff --git a/src/server/image.h b/src/server/image.h
index 1a64b60..c776361 100644
--- a/src/server/image.h
+++ b/src/server/image.h
@@ -2,32 +2,7 @@
#define _IMAGE_H_
#include "../config.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, NULL if complete
- uint32_t *crc32; // list of crc32 checksums for each 16MiB block in image
- dnbd3_connection_t *uplink; // pointer to a server connection
- 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
- pthread_spinlock_t lock;
-} dnbd3_image_t;
+#include "globals.h"
extern dnbd3_image_t *_images[SERVER_MAX_IMAGES];
extern int _num_images;
@@ -41,7 +16,7 @@ dnbd3_image_t* image_get(char *name, uint16_t revision);
void image_release(dnbd3_image_t *image);
-void image_load_all();
+int image_load_all(char *path);