Skip to content

Commit

Permalink
datatransfer.{cc,hh} -> filetransfer.{cc,hh}
Browse files Browse the repository at this point in the history
  • Loading branch information
knl committed Apr 8, 2020
1 parent c330109 commit f509559
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/libexpr/common-eval-args.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "common-eval-args.hh"
#include "shared.hh"
#include "datatransfer.hh"
#include "filetransfer.hh"
#include "util.hh"
#include "eval.hh"
#include "fetchers.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/libexpr/eval.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include "derivations.hh"
#include "globals.hh"
#include "eval-inline.hh"
#include "datatransfer.hh"
#include "filetransfer.hh"
#include "json.hh"
#include "function-trace.hh"

Expand Down
2 changes: 1 addition & 1 deletion src/libexpr/parser.y
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ formal
#include <unistd.h>

#include "eval.hh"
#include "datatransfer.hh"
#include "filetransfer.hh"
#include "fetchers.hh"
#include "store-api.hh"

Expand Down
2 changes: 1 addition & 1 deletion src/libstore/build.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "affinity.hh"
#include "builtins.hh"
#include "builtins/buildenv.hh"
#include "datatransfer.hh"
#include "filetransfer.hh"
#include "finally.hh"
#include "compression.hh"
#include "json.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/libstore/builtins/fetchurl.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "builtins.hh"
#include "datatransfer.hh"
#include "filetransfer.hh"
#include "store-api.hh"
#include "archive.hh"
#include "compression.hh"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "datatransfer.hh"
#include "filetransfer.hh"
#include "util.hh"
#include "globals.hh"
#include "store-api.hh"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/libstore/http-binary-cache-store.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "binary-cache-store.hh"
#include "datatransfer.hh"
#include "filetransfer.hh"
#include "globals.hh"
#include "nar-info-disk-cache.hh"

Expand Down
2 changes: 1 addition & 1 deletion src/libstore/s3-binary-cache-store.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include "nar-info-disk-cache.hh"
#include "globals.hh"
#include "compression.hh"
#include "datatransfer.hh"
#include "filetransfer.hh"
#include "istringstream_nocopy.hh"

#include <aws/core/Aws.h>
Expand Down
2 changes: 1 addition & 1 deletion src/nix-channel/nix-channel.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "shared.hh"
#include "globals.hh"
#include "datatransfer.hh"
#include "filetransfer.hh"
#include "store-api.hh"
#include "../nix/legacy.hh"
#include "fetchers.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/nix-prefetch-url/nix-prefetch-url.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "hash.hh"
#include "shared.hh"
#include "datatransfer.hh"
#include "filetransfer.hh"
#include "store-api.hh"
#include "eval.hh"
#include "eval-inline.hh"
Expand Down
2 changes: 1 addition & 1 deletion src/nix/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "shared.hh"
#include "store-api.hh"
#include "progress-bar.hh"
#include "datatransfer.hh"
#include "filetransfer.hh"
#include "finally.hh"

#include <sys/types.h>
Expand Down
2 changes: 1 addition & 1 deletion src/nix/upgrade-nix.cc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "command.hh"
#include "common-args.hh"
#include "store-api.hh"
#include "datatransfer.hh"
#include "filetransfer.hh"
#include "eval.hh"
#include "attr-path.hh"
#include "names.hh"
Expand Down

0 comments on commit f509559

Please sign in to comment.