1
0
Fork 0
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:
Mitchell Livingston 2007-05-21 15:02:11 +00:00
parent 2f3b43ff8e
commit c00208a8f6

View file

@ -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" );