fix
[oweals/gnunet.git] / src / fs / gnunet-download.c
index bbc75002659d1b90d8834c5c1a259781b6f29d79..fde254d7ca020bcc7d7dbea1212bd09f38435cfb 100644 (file)
@@ -46,10 +46,13 @@ static unsigned int anonymity = 1;
 
 static unsigned int parallelism = 16;
 
+static unsigned int request_parallelism = 4092;
+
 static int do_recursive;
 
 static char *filename;
 
+static int local_only;
 
 static void
 cleanup_task (void *cls,
@@ -208,6 +211,8 @@ run (void *cls,
                         GNUNET_FS_FLAGS_NONE,
                         GNUNET_FS_OPTIONS_DOWNLOAD_PARALLELISM,
                         parallelism,
+                        GNUNET_FS_OPTIONS_REQUEST_PARALLELISM,
+                        request_parallelism,
                         GNUNET_FS_OPTIONS_END);
   if (NULL == ctx)
     {
@@ -221,6 +226,8 @@ run (void *cls,
   options = GNUNET_FS_DOWNLOAD_OPTION_NONE;
   if (do_recursive)
     options |= GNUNET_FS_DOWNLOAD_OPTION_RECURSIVE;
+  if (local_only)
+    options |= GNUNET_FS_DOWNLOAD_OPTION_LOOPBACK_ONLY;
   dc = GNUNET_FS_download_start (ctx,
                                 uri,
                                 NULL,
@@ -255,13 +262,20 @@ static struct GNUNET_GETOPT_CommandLineOption options[] = {
   {'D', "delete-incomplete", NULL,
    gettext_noop ("delete incomplete downloads (when aborted with CTRL-C)"),
    0, &GNUNET_GETOPT_set_one, &delete_incomplete},
+  {'n', "no-network", NULL,
+   gettext_noop ("only search the local peer (no P2P network search)"),
+   1, &GNUNET_GETOPT_set_uint, &local_only},
   {'o', "output", "FILENAME",
    gettext_noop ("write the file to FILENAME"),
    1, &GNUNET_GETOPT_set_string, &filename},
   {'p', "parallelism", "DOWNLOADS",
    gettext_noop
-   ("set the maximum number of parallel downloads that are allowed"),
+   ("set the maximum number of parallel downloads that is allowed"),
    1, &GNUNET_GETOPT_set_uint, &parallelism},
+  {'r', "request-parallelism", "REQUESTS",
+   gettext_noop
+   ("set the maximum number of parallel requests for blocks that is allowed"),
+   1, &GNUNET_GETOPT_set_uint, &request_parallelism},
   {'R', "recursive", NULL,
    gettext_noop ("download a GNUnet directory recursively"),
    0, &GNUNET_GETOPT_set_one, &do_recursive},