aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/fs.h')
-rw-r--r--src/fs/fs.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/fs/fs.h b/src/fs/fs.h
index f13619041..288903418 100644
--- a/src/fs/fs.h
+++ b/src/fs/fs.h
@@ -32,7 +32,7 @@
32/** 32/**
33 * Size of the individual blocks used for file-sharing. 33 * Size of the individual blocks used for file-sharing.
34 */ 34 */
35#define GNUNET_FS_DBLOCK_SIZE (32*1024) 35#define DBLOCK_SIZE (32*1024)
36 36
37 37
38/** 38/**
@@ -42,14 +42,14 @@
42 * value is 32768 byte / 128 byte = 256 42 * value is 32768 byte / 128 byte = 256
43 * (128 byte = 2 * 512 bits). DO NOT CHANGE! 43 * (128 byte = 2 * 512 bits). DO NOT CHANGE!
44 */ 44 */
45#define GNUNET_FS_CHK_PER_INODE 256 45#define CHK_PER_INODE 256
46 46
47 47
48/** 48/**
49 * Maximum size for a file to be considered for 49 * Maximum size for a file to be considered for
50 * inlining in a directory. 50 * inlining in a directory.
51 */ 51 */
52#define GNUNET_FS_MAX_INLINE_SIZE 65536 52#define MAX_INLINE_SIZE 65536
53 53
54 54
55 55
@@ -509,7 +509,7 @@ struct GNUNET_FS_Namespace
509/** 509/**
510 * @brief keyword block (advertising data under a keyword) 510 * @brief keyword block (advertising data under a keyword)
511 */ 511 */
512struct GNUNET_FS_KBlock 512struct KBlock
513{ 513{
514 514
515 /** 515 /**
@@ -536,7 +536,7 @@ struct GNUNET_FS_KBlock
536/** 536/**
537 * @brief namespace content block (advertising data under an identifier in a namespace) 537 * @brief namespace content block (advertising data under an identifier in a namespace)
538 */ 538 */
539struct GNUNET_FS_SBlock 539struct SBlock
540{ 540{
541 541
542 /** 542 /**
@@ -571,6 +571,11 @@ struct GNUNET_FS_SBlock
571}; 571};
572 572
573 573
574struct IndexStartMessage
575{
576
577};
578
574 579
575 580
576#endif 581#endif