1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 09:13:06 +00:00

add Halite to clients

This commit is contained in:
Mitchell Livingston 2007-10-12 11:17:38 +00:00
parent 0365b84b6b
commit 64c5255c8e

View file

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