mirror of
https://github.com/transmission/transmission
synced 2024-12-24 16:52:39 +00:00
add BitPump
This commit is contained in:
parent
20eebf6092
commit
7f142247b7
1 changed files with 6 additions and 0 deletions
|
@ -126,6 +126,12 @@ char * tr_clientForId( uint8_t * id )
|
|||
charToInt( id[3] ) * 10 + charToInt( id[4] ),
|
||||
id[5], id[6] );
|
||||
}
|
||||
else if( !memcmp( &id[1], "AX", 2 ) )
|
||||
{
|
||||
asprintf( &ret, "BitPump %d.%c%c",
|
||||
charToInt( id[3] ) * 10 + charToInt( id[4] ),
|
||||
id[5], id[6] );
|
||||
}
|
||||
else if( !memcmp( &id[1], "AR", 2 ) )
|
||||
{
|
||||
asprintf( &ret, "Arctic Torrent" );
|
||||
|
|
Loading…
Reference in a new issue