Giter Club home page Giter Club logo

Comments (6)

anacrolix avatar anacrolix commented on June 11, 2024

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.

from torrent.

obitoquilt avatar obitoquilt commented on June 11, 2024

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.

header obfuscation handshake: error while establishing secret: error reading Y: EOF

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.

from torrent.

anacrolix avatar anacrolix commented on June 11, 2024

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 docker.png to be in the working directory. You can build the metainfo from testdata instead, or you can set the torrent storage to be operating from the testdata directory instead (pass a custom storage when you add the torrent).

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.

from torrent.

obitoquilt avatar obitoquilt commented on June 11, 2024

Thanks for your prompt reply. I try to pass a custom storage as shown below, but the code is stuck at <-tor.GotInfo().

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()))

from torrent.

anacrolix avatar anacrolix commented on June 11, 2024

I think you need to include the info bytes in AddTorrentOpt

from torrent.

obitoquilt avatar obitoquilt commented on June 11, 2024

I think you need to include the info bytes in AddTorrentOpt

Thank you. I fix it but encounter same error as described above.
The seeder has a error: rejecting accepted conn: don't want conns right now.
The leechers has a error: error establishing outgoing connection to 127.0.0.1:42069: bittorrent protocol handshake: while reading: EOF.

I find that if remove rejectAccepted function, the error disapears. The leechers can find the torrent metainfo but file cannot be downloaded.

// 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.

from torrent.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.