UDP tracker doesn't work with monotorrent client

1.1k views Asked by At

As a part of my tcp chat file sharing I used monotorrent to build a udp tracker on the server program (of my chat) but the client (that I build with monotorrent) and the sample client on monotorrent's source code doesn't connect with the tracker, the port of the client and the server are open and Utorrent does connect with the tracker.

I also tried to use the sample tracker on the source code as a udp tracker but it didn't work.

This is what I changed (7243 = my tracker port):

        System.Net.IPEndPoint listenpoint = new System.Net.IPEndPoint(System.Net.IPAddress.Loopback, 7243);
        ListenerBase listener = new MonoTorrent.Tracker.Listeners.UdpListener(listenpoint);

Help please

0

There are 0 answers