1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +00:00

add Ares Galaxy to clients

This commit is contained in:
Mitchell Livingston 2007-01-31 02:11:18 +00:00
parent 4871222fa5
commit 85044acbd6

View file

@ -138,6 +138,12 @@ char * tr_clientForId( uint8_t * id )
charToInt( id[3] ), charToInt( id[4] ), charToInt( id[3] ), charToInt( id[4] ),
charToInt( id[5] ) ); charToInt( id[5] ) );
} }
else if( !memcmp( &id[1], "AG", 2 ) )
{
asprintf( &ret, "Ares Galaxy %d.%d.%d",
charToInt( id[3] ), charToInt( id[4] ),
charToInt( id[5] ) );
}
else if( !memcmp( &id[1], "AR", 2 ) ) else if( !memcmp( &id[1], "AR", 2 ) )
{ {
asprintf( &ret, "Arctic Torrent" ); asprintf( &ret, "Arctic Torrent" );