mirror of
https://github.com/transmission/transmission
synced 2024-12-25 01:03:01 +00:00
add Blizzard Downloader to clients (still need to figure out the exact way version is shown)
This commit is contained in:
parent
2f3b43ff8e
commit
c00208a8f6
1 changed files with 4 additions and 0 deletions
|
@ -339,6 +339,10 @@ char * tr_clientForId( uint8_t * id )
|
||||||
asprintf( &ret, "BTQueue %d.%d.%d", charToInt( id[1] ),
|
asprintf( &ret, "BTQueue %d.%d.%d", charToInt( id[1] ),
|
||||||
charToInt( id[2] ), charToInt( id[3] ) );
|
charToInt( id[2] ), charToInt( id[3] ) );
|
||||||
}
|
}
|
||||||
|
else if( !memcmp( id, "BLZ", 3 ) ) /* 07 is 1.7, check later to find out how version is encoded */
|
||||||
|
{
|
||||||
|
asprintf( &ret, "Blizzard Downloader (%d%d)", id[3], id[4] );
|
||||||
|
}
|
||||||
else if( !memcmp( id, "LIME", 4 ) )
|
else if( !memcmp( id, "LIME", 4 ) )
|
||||||
{
|
{
|
||||||
asprintf( &ret, "Limewire" );
|
asprintf( &ret, "Limewire" );
|
||||||
|
|
Loading…
Reference in a new issue