monotorrent icon indicating copy to clipboard operation
monotorrent copied to clipboard

The official repository for MonoTorrent, a bittorrent library for .NET

Results 52 monotorrent issues
Sort by recently updated
recently updated
newest added

There are a few things I need to update to fully support ipv6. This includes: - [x] Fix Uri creation for IPV6 peers ( https://github.com/alanmcgovern/monotorrent/pull/589 ) - [x] Add support...

I want to check which local files are different from what's given in a .torrent file and ask user to proceed or cancel. Adding and hash checking the torrent will...

If InfoHashes have V1 and V2, code **"InfoHashes == fastResume.InfoHashes"** (TorrentManager.cs: line 1,105) is always failed. Because **"InfoHashes"** contains V1 and V2, but **"fastResume.InfoHashes"** contains only V1 (or V2). Here...

The following occurs quite often ``` System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. (Parameter 'to') at System.Net.Http.Headers.RangeItemHeaderValue..ctor(Nullable'1 from, Nullable'1 to) at System.Net.Http.Headers.RangeHeaderValue..ctor(Nullable'1 from, Nullable'1 to) at...

``` engine.StatsUpdate += (sender, args) => { //log to console var statsUpdateEventArgs = (StatsUpdateEventArgs)args; Console.WriteLine(statsUpdateEventArgs); }; ``` I'm trying to log status but it returns nothing because in source its...

Right now if you specify `ReportedListenEndPoints`, it completely overrides the IP reported to the tracker. I would like an option to announce both the IP tracker sees, and the IP...

A simple interface is nice to have, but there's a performance issue: it only accepts preformatted strings, which makes it too slow for detailed tracing scenarios because string must be...

MonoTorrent drops all incoming connections with > MonoTorrent.Client.ProtocolException: Invalid message length received. Value was 'XXXXXX' I suspect this has to do with the fact, that a torrent like this has...

Two new features: - temporary local peer IDs (useful for masking identity or for any other scenario that needs specific peer IDs for specific torrents) - connection gating: enables external...