Jump to content

Tracker


nametaken

Recommended Posts

I know that many of you probably don't want a built in tracker because of it adding a good amount of kb's and such, but i was wondering if the dev's could possibly make a "uTracker" or something side project, just for a low memory and low resource use private tracker? I don't want to suggest taking much time at all from uTorrent but maybe if there's extra time you could possibly make a private tracker prog?

Reason i ask is i sometimes use bitcomet tracker when seeding some files to a few friends. I see .torrent being the best fit here since sometimes there can be up to 10 people at a time downloading from me. And i would just love it if i could get rid of any program that deals with torrents besides uTorrent since i've fallin in love with this program ;p

Thanks!

Link to comment
Share on other sites

I guess my next question would be, Is there any chance of small interface being added. Just enough so that maybe if my friends type in my ip:port they can see the list of torrents im seeding? even if its just text thats fine, just enough so they know whats there and can click the torrent.

Or is this possible to make on my own? would love to learn how if someone could give me a link or somethin.

Link to comment
Share on other sites

You can check what torrents you have active at least. But you need PHP and a webserver. This would be a sample syntax:

$resume_file="./resume.dat";
$file_open=@fopen($resume_file,r);
$file=@fread($file_open,@filesize($resume_file));
preg_match_all("/\\\(.*?\.torrent)/",$file,$stats);
for($i=0;$i<count($stats[0])-1;$i++){
echo substr(strrchr($stats[1][$i],"\\"),1)."<br />";
}

Not that it's useful, but it's possible :)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...