Welcome Guest, Not a member yet? Register   Sign In
Bittorrent library?
#6

[eluser]prototype20[/eluser]
I'm using XBT tracker.

Example announce.php:
http://depositfiles.com/files/5cjpqugj6

Database Peers table:
Code:
CREATE TABLE IF NOT EXISTS `peers` (
  `infohash` varchar(40) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  `peer_id` varchar(40) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  `bytes` bigint(20) NOT NULL DEFAULT '0',
  `ip` varchar(50) COLLATE latin1_general_ci NOT NULL DEFAULT 'error.x',
  `port` smallint(5) unsigned NOT NULL DEFAULT '0',
  `status` enum('leecher','seeder') COLLATE latin1_general_ci NOT NULL DEFAULT 'leecher',
  `started` int(11) unsigned NOT NULL DEFAULT '0',
  `lastupdate` int(10) unsigned NOT NULL DEFAULT '0',
  `client` varchar(60) COLLATE latin1_general_ci NOT NULL DEFAULT '',
  `uploaded` bigint(20) unsigned NOT NULL DEFAULT '0',
  `downloaded` bigint(20) unsigned NOT NULL DEFAULT '0',
  `pid` varchar(32) COLLATE latin1_general_ci DEFAULT NULL,
  PRIMARY KEY (`infohash`,`peer_id`),
  KEY `pid` (`pid`),
  KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;


Messages In This Thread
Bittorrent library? - by El Forum - 07-23-2010, 01:30 AM
Bittorrent library? - by El Forum - 07-23-2010, 02:30 AM
Bittorrent library? - by El Forum - 07-23-2010, 03:49 AM
Bittorrent library? - by El Forum - 07-28-2010, 11:18 AM
Bittorrent library? - by El Forum - 07-28-2010, 11:42 AM
Bittorrent library? - by El Forum - 08-14-2010, 04:46 AM



Theme © iAndrew 2016 - Forum software by © MyBB