GekiRanger the Movie .torrent

Ask all tech support and help questions for downloading here. THERE IS NO GUARANTEE YOUR QUESTION WILL BE SOLVED!
Forum rules
If you're using Peerblock, you'll need to add our IP to the exception list when torrenting.

We don't ban IPs, so if you're having trouble yet see other people downloading okay, it's probably on your end.
Post Reply
User avatar
typhoon_2099
IXA
Posts: 198
Joined: Wed Dec 26, 2007 4:48 am
Favorite series: MagiRanger
Alignment: Chaotic Good
Contact:

GekiRanger the Movie .torrent

Post by typhoon_2099 »

Just so you know, the 2 trackers that come up in utorrent don't have a blank line between them, so it's only scraping claws.us instead of claws.us and tvnihon.com.

I know they both point to the same place, but I just thought I'd point it out.
User avatar
Quatrerwin
[insert witty title here]
Posts: 276
Joined: Mon Dec 10, 2007 8:29 pm
Favorite series: Zeta Gundam
2nd Favorite Series: Gundam 0079
Alignment: Chaotic Neutral
Quote: "You're dead, this is the afterlife -- and I'm God" - Q
Location: WI, USA

Re: GekiRanger the Movie .torrent

Post by Quatrerwin »

It looks like its a malformed Announce URL. There's really no need for claws.us to be listed

I fixed the torrent on the tracker. You can redownload the torrent if you would like. Otherwise if you have other torrents from tv-nihon going, you can copy the announce url out of one of those and replace the existing announce urls in the movie torrent with it.
User avatar
takenoko
Team Baron
Team Baron
Posts: 36660
Joined: Mon Dec 10, 2007 8:33 pm
Gender: Toast
Favorite series: All of them
Alignment: Neutral
My boom: stick
Quote: <Lunagel> That's Toei's dumb fault
Type: ISFJ Protector
Location: Yami ni umare, yami ni kisu
Contact:

Re: GekiRanger the Movie .torrent

Post by takenoko »

I just tried downloading it with utorrent and it's working fine. Are you sure there's a problem?
manabu
Adventure
Posts: 34
Joined: Fri Dec 14, 2007 3:30 pm

Re: GekiRanger the Movie .torrent

Post by manabu »

typhoon_2099 wrote:Just so you know, the 2 trackers that come up in utorrent don't have a blank line between them, so it's only scraping claws.us instead of claws.us and tvnihon.com.
That is normal behaviour for trackers grouped into the same tracker tier group.

If the announce URL's look like what the code below shows (in uTorrent), then it means the announce URL's, which is not separated by a blank line, is within the same tracker tier group.

Code: Select all

http://www.claws.us:6969/announce
http://www.tvnihon.com:6969/announce

How a BitTorrent client program, which support multitracker torrents, uses the announce interval varies from each BitTorrent client. In the example above, a torrent client should first try claws.us announce URL. If the client succeeds in getting an response from the tracker, then the next announce URL is not tried. Without a response, then the tvnihon.com announce URL is tried instead. If tvnihon.com announce URL does not respond either, then the torrent client program will try the claws.us announce URL again. However there may be a time delay before the client program tries the first announce URL again. (uTorrent tries to get in touch with the tracker after a failure straight away. On the next reiteration without a success in between in contackting the tracker, then the time delay will increase. The maximum time uTorrent will wait for contacting a tracker when prevous attempt has hailed is 40 minutes. Note, the time delay is for the whole tracker tier group in uTorrent.)


In the code example below, would make a mutlitracker aware client to try both claws.us and tvnihon.com announce URL's simultaneously. This is because the announce URL's is in different tracker tier groups. However, the 85.17.200.8 announce URL wil not be tried as long as there is no failure when using tvnihon.com announce URL, because they both are in the same tracker tier group. See section above for how the torrent client reacts on a failure when there are more than one tracker in the same tracker tier group.

Code: Select all

http://www.claws.us:6969/announce

http://www.tvnihon.com:6969/announce
http://85.17.200.8:6969/announce

Tracker announce URL listing as shown in the example abowe should never be used with TV-Nihon's tracker. The reason is that the same actual tracker will be asked two times instead of one time.

Note. Assuming there really is only one instance of the tracker software running on the server. All domain names points to the same IP and all the announce URL's has the same port. Only one instance of a program can bind to the port used.


In the following example, all announce URL's is tried simultaneously.

Code: Select all

http://www.claws.us:6969/announce

http://www.tvnihon.com:6969/announce

http://85.17.200.8:6969/announce

Tracker announce URL listing as shown in the example above should never be used with TV-Nihon's tracker. The reason is that the same actual tracker will be asked three times instead of one time. Also see 'note' given for the second example.


The correct way writing announce URL's for TV-Nihon's own tracker, when both claws.us and tvnihon.com domains are operational and points to the same IP is what are given below:

Code: Select all

http://www.claws.us:6969/announce
http://www.tvnihon.com:6969/announce

Note. The order of the announce URL's does not matter as long as they are within the same tracker tier group.

The only bennefit with the code example above for TV-Nihon's tracker is if a DNS server fails to do a lookup on one of the domains. There has been, and may still be a problem for people doing a DNS lookup on tvnihon.com domain names.


Note. Any announce URL's which starts with udp:// as show in the example below will not work with uTorrent. uTorrent does not, and will most likely not, support UDP trackers due to many flaws in the UDP tracker spec. Reference: http://www.utorrent.com/faq.php#Does_.C ... rackers.3F

Code: Select all

udp://www.claws.us:6969/announce
http://www.claws.us:6969/announce

http://www.tvnihon.com:6969/announce
http://85.17.200.8:6969/announce

Quatrerwin wrote:It looks like its a malformed Announce URL. There's really no need for claws.us to be listed
If the description about the announce URL's in the torrent file is given correctly from typhoon_2099, then it really is not a malformed announce URL. It is the way tracker announce URL's are listed when they belongs in the same tier by uTorrent.
Last edited by manabu on Sun Mar 23, 2008 5:07 pm, edited 1 time in total.
User avatar
Quatrerwin
[insert witty title here]
Posts: 276
Joined: Mon Dec 10, 2007 8:29 pm
Favorite series: Zeta Gundam
2nd Favorite Series: Gundam 0079
Alignment: Chaotic Neutral
Quote: "You're dead, this is the afterlife -- and I'm God" - Q
Location: WI, USA

Re: GekiRanger the Movie .torrent

Post by Quatrerwin »

manabu wrote:If the description about the announce URL's in the torrent file is given correctly from typhoon_2099, then it really is not a malformed announce URL. It is the way tracker announce URL's are listed when they belongs in the same tier by uTorrent.
It was a mistake that was made when the torrent file was originally made. Takenoko accidentally included claws.us in the announce urls. Anyway, I removed the second announce url from the torrent on the server earlier.
User avatar
typhoon_2099
IXA
Posts: 198
Joined: Wed Dec 26, 2007 4:48 am
Favorite series: MagiRanger
Alignment: Chaotic Good
Contact:

Re: GekiRanger the Movie .torrent

Post by typhoon_2099 »

I see.
Post Reply

Return to “Downloads & Site Help”