作为我的tcp聊天文件共享的一部分,我使用monotorrent在服务器程序(我的聊天)上构建了一个udp跟踪器,但客户端(我用monotorrent构建)和monotorrent源代码上的示例客户端没有连接跟踪器,客户端和服务器的端口是打开的,Utorrent确实与跟踪器连接。
我还尝试将源代码上的示例跟踪器用作udp跟踪器,但它不起作用。
这是我更改的内容(7243 =我的跟踪器端口):
System.Net.IPEndPoint listenpoint = new System.Net.IPEndPoint(System.Net.IPAddress.Loopback, 7243);
ListenerBase listener = new MonoTorrent.Tracker.Listeners.UdpListener(listenpoint);
请帮助