aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_pr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/gnunet-service-fs_pr.h')
-rw-r--r--src/fs/gnunet-service-fs_pr.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/fs/gnunet-service-fs_pr.h b/src/fs/gnunet-service-fs_pr.h
index e15ea0b54..f435cf8d6 100644
--- a/src/fs/gnunet-service-fs_pr.h
+++ b/src/fs/gnunet-service-fs_pr.h
@@ -34,6 +34,12 @@
34 */ 34 */
35enum GSF_PendingRequestOptions 35enum GSF_PendingRequestOptions
36{ 36{
37
38 /**
39 * No special options (P2P-default).
40 */
41 GSF_PRO_DEFAULTS = 0,
42
37 /** 43 /**
38 * Request must only be processed locally. 44 * Request must only be processed locally.
39 */ 45 */
@@ -47,7 +53,7 @@ enum GSF_PendingRequestOptions
47 /** 53 /**
48 * Request persists indefinitely (no expiration). 54 * Request persists indefinitely (no expiration).
49 */ 55 */
50 GSF_PRO_REQUEST_EXPIRES = 4, 56 GSF_PRO_REQUEST_NEVER_EXPIRES = 4,
51 57
52 /** 58 /**
53 * Request is allowed to refresh bloomfilter and change mingle value. 59 * Request is allowed to refresh bloomfilter and change mingle value.
@@ -63,7 +69,7 @@ enum GSF_PendingRequestOptions
63 * Option mask for typical local requests. 69 * Option mask for typical local requests.
64 */ 70 */
65 GSF_PRO_LOCAL_REQUEST = 71 GSF_PRO_LOCAL_REQUEST =
66 (GSF_PRO_BLOOMFILTER_FULL_REFRESH | GSF_PRO_PRIORITY_UNLIMITED) 72 (GSF_PRO_BLOOMFILTER_FULL_REFRESH | GSF_PRO_PRIORITY_UNLIMITED | GSF_PRO_REQUEST_NEVER_EXPIRES)
67}; 73};
68 74
69 75