diff options
Diffstat (limited to 'src/plugins/fs/fs.h')
-rw-r--r-- | src/plugins/fs/fs.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/plugins/fs/fs.h b/src/plugins/fs/fs.h index 9a00a24f..1bfadc42 100644 --- a/src/plugins/fs/fs.h +++ b/src/plugins/fs/fs.h | |||
@@ -210,6 +210,11 @@ typedef struct SL | |||
210 | struct GNUNET_FSUI_SearchList *fsui_list; | 210 | struct GNUNET_FSUI_SearchList *fsui_list; |
211 | 211 | ||
212 | /** | 212 | /** |
213 | * Maximum runtime for the search. | ||
214 | */ | ||
215 | GNUNET_CronTime max_delay; | ||
216 | |||
217 | /** | ||
213 | * Number of results received so far. | 218 | * Number of results received so far. |
214 | */ | 219 | */ |
215 | unsigned int resultsReceived; | 220 | unsigned int resultsReceived; |
@@ -224,6 +229,21 @@ typedef struct SL | |||
224 | */ | 229 | */ |
225 | unsigned int last_y; | 230 | unsigned int last_y; |
226 | 231 | ||
232 | /** | ||
233 | * Did the user just ask to pause the search? | ||
234 | */ | ||
235 | int is_paused; | ||
236 | |||
237 | /** | ||
238 | * Desired anonymity level. | ||
239 | */ | ||
240 | unsigned int anonymityLevel; | ||
241 | |||
242 | /** | ||
243 | * Maximum number of results. | ||
244 | */ | ||
245 | unsigned int max_results; | ||
246 | |||
227 | } SearchList; | 247 | } SearchList; |
228 | 248 | ||
229 | 249 | ||