继续接着第一篇写:使用C#实现DHT磁力搜索的BT种子后端管理程序+数据库设计(开源)[搜片神器] 谢谢园子朋友的支持,已经找到个VPS进行测试,国外的服务器: h31bt.org 大家可以给提点意见... 开源地址:https://github.com/h31h31/H31DHTMgr 程序下载:H31DHT下载 下载种子文件的时候失败很多,增加调试信息总是返回很多:Timeouts are not supported on this stream. The remote server re…
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; namespace XunleiHelper { public class Torrent { #region 私有字段 private string _openError = ""; private bool _openFile = false; private…
首先torrent里面肯定携带的有一些信息,所以就需要我们来解析这些信息. 我们这里做多文件制作torrent,所以首先要针对每一个文件建一个实体类 import java.util.List; public class Info { private String name; private byte[] pieces; private long piecesLength; private long length; private String md5sum; private List<File…