Skip to content

Tags: alanmcgovern/monotorrent

Tags

release-v3.0.3-beta-0049

Toggle release-v3.0.3-beta-0049's commit message
Fix some formatting strings to prevent exceptions

release-v3.0.3-beta-0024

Toggle release-v3.0.3-beta-0024's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #688 from alanmcgovern/improve-bep47-compatibility

Improve compatibility (arguably incorrect) BEP47 torrents

release-v3.0.3-beta-0003

Toggle release-v3.0.3-beta-0003's commit message
Prepare an alpha release for 3.0.3

release-v3.0.2

Toggle release-v3.0.2's commit message
Bump version to 3.0.2

release-v3.0.1

Toggle release-v3.0.1's commit message
Bump version to 3.0.1

release-v3.0.0

Toggle release-v3.0.0's commit message
Make MonoTorrent 3.0 stable

release-v3.0.0-beta-0264

Toggle release-v3.0.0-beta-0264's commit message
Create the 'out' directory before restoring packages

This makes it easier to guarantee the path always exists so msbuild
/t:Restore more reliably succeeds.

Don't rely on running the 'pack' command to create the directory.

release-v3.0.0-beta-0240

Toggle release-v3.0.0-beta-0240's commit message
Fix integration test failures under .net 4.7.2

If a socket is disposed after 'ConnectAsync' is invoked but before the
native 'connect' begins, you can get an 'unexpected'
objectdisposedexceptionw which causes the SocketAsyncEventArgs object to
be left in the 'operation is in progress' state forever.

This doesn't happen under newer frameworks, so use a fallback
implementation for .NET 4.7.2 and netstandard 2.0/2.1.

release-v3.0.0-beta-0159

Toggle release-v3.0.0-beta-0159's commit message
[core] Add extra logging around incoming/outgoing connections

release-v3.0.0-beta-0157

Toggle release-v3.0.0-beta-0157's commit message
[core] Add improved logging for unexpected peer_ids

If a peer sends a HandshakeMessage with a 'peer_id' that *does not*
match the 'peer_id' it sent to the tracker - log both the expected
and actual peer_ids.

Helps diagnose #614

It's probably a normal bittorrent client which is just randomising
the peer id on every connection attempt.