C# Monotorrent UDP错误

C# Monotorrent UDP错误,c#,torrent,monotorrent,C#,Torrent,Monotorrent,我尝试使用此空文件传送文件: public void DownloadTorrent(string path) { Torrent torrent = Torrent.Load(path); Console.WriteLine(torrent.Files[0]); TorrentManager manager = new TorrentManager(torrent, savePath, n

我尝试使用此空文件传送文件:

        public void DownloadTorrent(string path)
        {
            Torrent torrent = Torrent.Load(path);

            Console.WriteLine(torrent.Files[0]);
            TorrentManager manager = new TorrentManager(torrent, savePath, new TorrentSettings());
            engine.Register(manager);
            manager.HashCheck(true);
            manager.Start();
        }
但每次加载torrent文件时,都会出现以下错误:

Unsupported protocol udp://tracker.publicbt.com:80/announce
Unsupported protocol udp://tracker.istole.it:80/announce
有人知道如何解决这个问题吗


提前感谢。

MonoTorrent在中甚至在此之前都没有看到提交,您可以看到它在2010年之后的工作非常稀少。它不会拥有现代torrent客户端所拥有的所有优秀功能,只是说

无论如何,UDP跟踪器协议是非常有用的,所以很有可能确实有一些支持。通过查看他们在github上的提交,我们可以看到他们在2009年实际上添加了udp跟踪器支持。快速登记也表明支持仍然存在


但是有一个尚未合并(可能永远不会合并),所以我想说,你最好的选择是克隆或分叉存储库(或其中一个),并使用添加的补丁自己构建它。

MonoTorrent在中没有看到提交,甚至在此之前,你可以看到它在2010年后的工作非常稀少。它不会拥有现代torrent客户端所拥有的所有优秀功能,只是说

无论如何,UDP跟踪器协议是非常有用的,所以很有可能确实有一些支持。通过查看他们在github上的提交,我们可以看到他们在2009年实际上添加了udp跟踪器支持。快速登记也表明支持仍然存在

但是,有一个尚未合并(可能永远也不会合并)的存储库,所以我想说,您最好的选择是克隆或分叉存储库(或其中一个),并使用添加的补丁自行构建它