All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.acgist.snail.net.torrent.tracker.TrackerServer Maven / Gradle / Ivy

Go to download

基于Java开发的下载工具,支持下载协议:BT(BitTorrent、磁力链接、种子文件)、HLS(M3U8)、FTP、HTTP。

There is a newer version: 2.17.0
Show newest version
package com.acgist.snail.net.torrent.tracker;

import com.acgist.snail.net.UdpServer;

/**
 * 

UDP Tracker服务端

* * @author acgist */ public final class TrackerServer extends UdpServer { private static final TrackerServer INSTANCE = new TrackerServer(); public static final TrackerServer getInstance() { return INSTANCE; } private TrackerServer() { super("Tracker Server", TrackerAcceptHandler.getInstance()); this.handle(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy