mirror of
https://github.com/transmission/transmission
synced 2024-12-25 01:03:01 +00:00
add limewire client id
This commit is contained in:
parent
4b44da5a8c
commit
ae94e3c275
1 changed files with 4 additions and 0 deletions
|
@ -163,6 +163,10 @@ char * tr_clientForId( uint8_t * id )
|
|||
asprintf( &ret, "XBT Client %c%c%c%s", id[3], id[4], id[5],
|
||||
id[6] == 'd' ? " (debug)" : "" );
|
||||
}
|
||||
else if( !memcmp( id, "LIME", 4 ) )
|
||||
{
|
||||
asprintf( &ret, "Limewire (%c%c%c%c)", id[4], id[5], id[6], id[7] );
|
||||
}
|
||||
|
||||
if( !ret )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue