-
-
Notifications
You must be signed in to change notification settings - Fork 628
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot use download subcmd to download what i seed torrent #908
Comments
The code looks good, but expecting a torrent to just work with a single seeder without knowing network conditions is iffy. You might try connecting your download cmds directly to the local seeding address. There's a lot of things that can go wrong trying to seed arbitrarily from a single node. |
Thanks for your reply. I follow your idea when connecting download cmds directly to the local seeding address(127.0.0.1:42069). bargle.Subcommand{Name: "download", Command: func() bargle.Command {
var dlc DownloadCmd
dlc.TestPeer = []string{"127.0.0.1:42069"} // add here
cmd := bargle.FromStruct(&dlc)
cmd.DefaultAction = func() error {
return downloadErr(downloadFlags{
Debug: debug,
DownloadCmd: dlc,
})
}
return cmd
}()} And then, i run the seeder and leecher, but i encounter a error as shown below.
The Excuting function is: c, err = doProtocolHandshakeOnDialResult(
opts.t,
obfuscatedHeaderFirst,
addr,
firstDialResult,
) It is not clear if the code(add seeding address) is wrong or if some configuration is required. |
Thanks for reporting this. The reason is that because you build the metainfo from the full file path, when you add the generated metainfo to your seeder client, it expects Subsequently, the client thinks it doesn't have any data to seed, and rejects incoming connections because it both has no download priority set, and nothing to seed. If you make the above corrects, the leechers work. |
Thanks for your prompt reply. I try to pass a custom storage as shown below, but the code is stuck at filePath := "testdata/docker.png"
pc, err := storage.NewDefaultPieceCompletionForDir("testdata")
if err != nil {
panic(err)
}
defer pc.Close()
tor, _ := cl.AddTorrentOpt(torrent.AddTorrentOpts{
InfoHash: torrentFile.HashInfoBytes(),
Storage: storage.NewFileOpts(storage.NewFileClientOpts{
ClientBaseDir: "testdata",
FilePathMaker: func(opts storage.FilePathMakerOpts) string {
return filepath.Join(opts.File.Path...)
},
TorrentDirMaker: nil,
PieceCompletion: pc,
}),
})
// Wait for the torrent to be ready
<-tor.GotInfo() // stuck here
hash := tor.InfoHash()
fmt.Printf("%v\n", tor.Metainfo().Magnet(&hash, tor.Info())) |
I think you need to include the info bytes in AddTorrentOpt |
Thank you. I fix it but encounter same error as described above. I find that if remove // client.go 524 lines
if !closed && conn != nil {
reject = cl.rejectAccepted(conn) // if i remove this
} I am very sorry to trouble you because i am not familiar with this. |
i fixed this error: |
I took a quick look, there's no DownloadAll? |
I want to announce the torrent to the dht network with the below code, but cannot use
download
subcmd to download magnet. Thanks for any advice.The text was updated successfully, but these errors were encountered: