用MonoTorrent下载torrent的C#

时间:2014-07-20 19:35:59

标签: c# mono download monotorrent torrent

我试图用MonoTorrent下载一个torrent,问题是当我查看wireshark中的网络流量时,似乎客户端甚至没有尝试联系跟踪器。它正确读取torrent文件,visual studio显示没有错误。

这是我使用的代码:

public Form1()
{
        EngineSettings settings = new EngineSettings();
        settings.AllowedEncryption = EncryptionTypes.All;
        settings.SavePath = Path.Combine(Environment.CurrentDirectory, "torrents");

        if (!Directory.Exists(settings.SavePath))
            Directory.CreateDirectory(settings.SavePath);

        engine = new ClientEngine(settings);

        engine.ChangeListenEndpoint(new IPEndPoint(IPAddress.Any, 6969));

        Torrent torrent = Torrent.Load("C:/Users/xxx/Google Drive/WindowsFormsApplication1/WindowsFormsApplication1/bin/Debug/kontakt.torrent");

        TorrentManager manager = new TorrentManager(torrent, engine.Settings.SavePath, new TorrentSettings());

        engine.Register(manager);

        manager.Start();
}

我真的很感激任何帮助,或者如果有人知道某些替代方案

1 个答案:

答案 0 :(得分:0)

您的代码适合我。确保你没有创建私人洪流。