]> Sergey Matveev's repositories - btrtrc.git/blobdiff - spec.go
Add DisableInitialPieceCheck option (#677)
[btrtrc.git] / spec.go
diff --git a/spec.go b/spec.go
index 6708db9093ce6420c73bd5312ee067944a3f578f..21058477e30d28658dc997b5719a8b2d2210fb28 100644 (file)
--- a/spec.go
+++ b/spec.go
@@ -23,8 +23,9 @@ type TorrentSpec struct {
        Sources []string
 
        // The chunk size to use for outbound requests. Defaults to 16KiB if not set.
-       ChunkSize int
-       Storage   storage.ClientImpl
+       ChunkSize                int
+       DisableInitialPieceCheck bool
+       Storage                  storage.ClientImpl
 
        // Whether to allow data download or upload
        DisallowDataUpload   bool