Questions tagged [monotorrent]

MonoTorrent is a cross-platform library implementing the BitTorrent protocol. It is based on the Mono implementation of the .NET Framework. As a result, MonoTorrent can be compiled and executed on every major operating system available today. There has also been work completed recently which allows the library to operate on the Compact .NET framework. This now allows the library to run on any platform supporting the compact framework, such as smart phones.

MonoTorrent is a cross-platform library implementing the BitTorrent protocol. It is based on the Mono implementation of the .NET Framework. As a result, MonoTorrent can be compiled and executed on every major operating system available today. There has also been work completed recently which allows the library to operate on the Compact .NET framework. This now allows the library to run on any platform supporting the compact framework, such as smart phones.

see http://en.wikipedia.org/wiki/MonoTorrent

41 questions
11
votes
0 answers

MonoTorrent magnet link download does not start

I strongly believe that MonoTorrent library can do this, but it is probably due to the lack of documentation that I haven't been able to get it working. To start with, MonoTorrent seems to be able to successfully download original torrents by using…
zurfyx
  • 31,043
  • 20
  • 111
  • 145
4
votes
1 answer

C# downloading torrent with MonoTorrent

I'm trying to download a torrent with MonoTorrent, the problem is that when i look at the network traffic in wireshark it seems like the client is not even attempting to contact the tracker. It reads the torrent-file correctly and visual studio…
user3713080
  • 399
  • 4
  • 17
4
votes
2 answers

can not download torrent using monotorrent ("no connection could be made because the target machine actively refused it")

I am trying to download a torrent using monotorrent. I have just download a sample program from its github repository and have made required changes. It is creating all files on respected location with size of 0 bytes and no progress. When running…
shashwat
  • 7,851
  • 9
  • 57
  • 90
4
votes
2 answers

MonoTorrent - Magnet link to Torrent file

Is there a way to generate .torrent file from a magnet link using the MonoTorrent .Net library? If so can someone explain with an example? I searched the site as well as googled but cant find a solution. if it is not possible are there any other…
user1715559
  • 79
  • 2
  • 9
3
votes
1 answer

MonoTorrent and metadata mode

MonoTorrent client doesn't download file from another peer using matadata mode: var torrentDefaults = new TorrentSettings { UseDht = true, EnablePeerExchange = true }; var engine = new ClientEngine(); engine.ChangeListenEndpoint(new…
SHSE
  • 2,423
  • 17
  • 16
3
votes
1 answer

Creating a torrent file with monotorrent: How do I add webseeds?

I have been looking at monotorrent and while investigating the whole bittorrent thing I saw that a torrent file may also specify web seeds, which are basically standard HTTP downloads but which can work e.g. as an initial seed. I have also seen in…
flq
  • 22,247
  • 8
  • 55
  • 77
3
votes
1 answer

Creation of torrent using monotorrent c#

I am trying to create a torrent for the files in my desktop using monotorrent i have tried like the below code i am able to get the byte code i am not able to save it as torrent it shows access denied enter code here string path =…
user2189168
  • 189
  • 1
  • 2
  • 15
3
votes
1 answer

How to get Monotorrents DHT to work?

Iam trying to get the dht implementation of monotorrent to work but i just cant seem to find any peers. ive tried most of the examplecode code availeble on the net like the testclient and dhttest. I have tried with several diffrent…
2
votes
0 answers

Monotorrent does not download files

I'm developing an application that needs to download a directory (11 GB in size), via torrent, but it only creates 0 byte files. When testing with a small volume (~ 100 MB) - everything is fine. I tried torrent files from different trackers, nothing…
2
votes
2 answers

MonoTorrent to distribute software

Just wondering of what people think of using MonoTorrent and the torrent protocol as the core part of an installer.... Essentially I am creating an installer which has the following requirements: Access through Firewalls/Proxies Runs over…
vdh_ant
  • 12,720
  • 13
  • 66
  • 86
2
votes
1 answer

Monotorrent sample client don't download some torrents

I want to write an application in C# that will use monotorrent open source lib to download torrents. As a start I'm trying to download some torrents using the sample client in the lib like this torrent but the download does not start, this torrent…
AvichaiS
  • 21
  • 3
2
votes
1 answer

Experience with MonoTorrent or alternative to use BitTorrent on C#

I've been using the MonoTorrent library for a couple of weeks now and am looking for any kind of feedback or recommended alternatives. The only issue I have with the library so far is that it is MUCH slower than uTorrent, I am not sure if this is a…
1
vote
2 answers

BitSharp / MonoTorrent chokes all peers

I am writing a library to download files via bittorrent. There will be no user intervention. The user is to be blissfully unaware that files are even being downloaded. I've chosen BitTorrent as the preferred method of transferring the files, and…
Richard C
  • 2,176
  • 5
  • 30
  • 40
1
vote
1 answer

MonoTorrent C# Downloading torrent

I'm creating a torrent application.I found a library called "MonoTorrent" which i decided to use.There is some problems this code below doesnt work.I think a lot of code are changed like ITorrentManager doesn't exist also for EngineSettings…
XANDRO
  • 41
  • 6
1
vote
2 answers

How to add a class function to get completed peers in a torrent?

I have created a script that generates information about a torrent file! But I'm lacking in creating a seeds and peers displaying function! Someone told me that they are in the completed field defined in the torrent. Please my class function codes…
user621162
1
2 3