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

added BT Protocol Daemon to clients

This commit is contained in:
Mitchell Livingston 2007-01-02 03:33:55 +00:00
parent b9edcfb62b
commit 56c4ade75f

View file

@ -226,6 +226,10 @@ char * tr_clientForId( uint8_t * id )
{
asprintf( &ret, "burst! %c.%c.%c", id[5], id[7], id[9] );
}
else if( !memcmp( id, "btpd", 4 ) )
{
asprintf( &ret, "BT Protocol Daemon %c%c%c", id[5], id[6], id[7] );
}
else if( !memcmp( id, "LIME", 4 ) )
{
asprintf( &ret, "Limewire (%c%c%c%c)", id[4], id[5], id[6], id[7] );