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

add BitBuddy to clients

This commit is contained in:
Mitchell Livingston 2007-04-03 13:30:19 +00:00
parent b29d8e4342
commit dc456f31e6

View file

@ -177,6 +177,11 @@ char * tr_clientForId( uint8_t * id )
asprintf( &ret, "BTG %c.%c.%c.%c", asprintf( &ret, "BTG %c.%c.%c.%c",
id[3], id[4], id[5], id[6] ); id[3], id[4], id[5], id[6] );
} }
else if( !memcmp( &id[1], "BB", 2 ) )
{
asprintf( &ret, "BitBuddy %c.%c%c%c",
id[3], id[4], id[5], id[6] );
}
if( ret ) if( ret )
{ {