Unknown Client in the Peers inspector tab? Post it here.

Discussion of Transmission that doesn't fit in the other categories
keepup
Posts: 1
Joined: Tue Aug 03, 2010 9:17 am

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by keepup »

No idea what that is. Any ideas?
elpasi
Posts: 4
Joined: Sun May 04, 2008 3:53 pm

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by elpasi »

I saw two:

-UT1830%FF

and

-UT1830(

(yes, one has %FF at the end, the other just an opening paren)

On 2.04+ r11187.
r0n1n
Posts: 67
Joined: Sat Dec 19, 2009 11:29 pm

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by r0n1n »

-BT4020-

Using 2.04+ (11189)
elpasi
Posts: 4
Joined: Sun May 04, 2008 3:53 pm

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by elpasi »

-bA0900-

(Exact capitalisation)

2.04+ r11212
r0n1n
Posts: 67
Joined: Sat Dec 19, 2009 11:29 pm

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by r0n1n »

-UE2108-

Using 2.10 beta1.
kovalev
Posts: 24
Joined: Fri Oct 16, 2009 1:09 pm

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by kovalev »

-UT1830%00
-UT1830A
Transmission GTK 2.11+ r11345
Last edited by kovalev on Thu Oct 28, 2010 1:43 pm, edited 1 time in total.
kovalev
Posts: 24
Joined: Fri Oct 16, 2009 1:09 pm

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by kovalev »

-FR0000-
Transmission GTK 2.11+ r11345
Fiete5401
Posts: 66
Joined: Wed Feb 11, 2009 3:45 pm
Location: Germany

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by Fiete5401 »

-UE210B-

using 2.11 - 11322.
livings124
Transmission Developer
Posts: 3142
Joined: Fri Jan 13, 2006 8:08 pm

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by livings124 »

x190 wrote:BitTorrent SDK 2.0.0.0

ABC 35.2.5
What are the corresponding id's for these?
stealthc
Posts: 5
Joined: Fri Dec 03, 2010 7:17 pm

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by stealthc »

I modified the peerid in version.h in libtransmission then recompiled, will setting this one value not register it as a different peerid? Here's what I changed:

Code: Select all

#define PEERID_PREFIX             "-TW001Z-"
#define USERAGENT_PREFIX          "0.01"
#define SVN_REVISION              "0"
#define SVN_REVISION_NUM          0
#define SHORT_VERSION_STRING      "0.01"
#define LONG_VERSION_STRING       "0.01 (0)"
#define VERSION_STRING_INFOPLIST  0.01
#define MAJOR_VERSION             0
#define MINOR_VERSION             01
#define TR_STABLE_RELEASE         1

As well I noticed under clients.c and duplicated the line:

Code: Select all

    /* Azureus-style */
    if( id[0] == '-' && id[7] == '-' )
    {
        if( !memcmp( id+1, "TR", 2 ) )
        {
            if( !memcmp( id+3, "000", 3 ) ) /* very old client style: -TR0006- is 0.6 */
                tr_snprintf( buf, buflen, "Transmission 0.%c", id[6] );
            else if( !memcmp( id+3, "00", 2) ) /* previous client style: -TR0072- is 0.72 */
                tr_snprintf( buf, buflen, "Transmission 0.%02d", strint(id+5,2) );
            else /* current client style: -TR111Z- is 1.11+ */
                tr_snprintf( buf, buflen, "Transmission %d.%02d%s", strint(id+3,1), strint(id+4,2),
                          id[6]=='Z' || id[6]=='X' ? "+" : "" );
        }
	else if( !memcmp( id+1, "TW", 2 ) )
	{
                tr_snprintf( buf, buflen, "TW %d.%02d%s", strint(id+3,1), strint(id+4,2),
                          id[6]=='Z' || id[6]=='X' ? "+" : "" );
	}
It compiled fine, so do I have to use a packet analyzer to figure it out or am I on the right track? I noticed in the about window under help menu reports back some of these changes.

Are there any other spots I should poke about in before proceeding? I just wanted to make my client have a unique peerid series in order to implement some extensions to the torrent protocol.

Any thoughts as to the best way to go about doing this? Just wondering...a little research and I ought to have a place to start on this soon hopefully.
anonova
Posts: 1
Joined: Sun Jan 16, 2011 11:54 pm

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by anonova »

-TB1011-

(on 2.13 (11501))
r0n1n
Posts: 67
Joined: Sat Dec 19, 2009 11:29 pm

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by r0n1n »

-FL10%FF%FF-

Using 2.20 Beta1
ranpha
Posts: 8
Joined: Sat Mar 05, 2011 10:33 am

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by ranpha »

-UE210B-
-UT1830N

On Transmission 2.22.
Rudloff
Posts: 16
Joined: Thu Nov 19, 2009 9:09 pm

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by Rudloff »

r0n1n wrote:-FL10%FF%FF-

Using 2.20 Beta1
I am still seeing it on 2.30b1.
Thinine
Posts: 19
Joined: Fri Jan 27, 2006 4:36 am

Re: Unknown Client in the Peers inspector tab? Post it here.

Post by Thinine »

-UE210B-

2.30b1
Post Reply