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
1 changed files with 4 additions and 0 deletions

View File

@ -339,6 +339,10 @@ char * tr_clientForId( uint8_t * id )
asprintf( &ret, "BTQueue %d.%d.%d", charToInt( id[1] ),
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 ) )
{
asprintf( &ret, "Limewire" );