mirror of
https://github.com/transmission/transmission.git
synced 2026-05-08 17:49:52 +01:00
add Net Transport to clients list
This commit is contained in:
@@ -250,6 +250,12 @@ char * tr_clientForId( const uint8_t * id )
|
||||
tr_asprintf( &ret, "Wyzo %c.%c.%c.%c",
|
||||
id[3], id[4], id[5], id[6] );
|
||||
}
|
||||
else if( !memcmp( &id[1], "NX", 2 ) )
|
||||
{
|
||||
tr_asprintf( &ret, "Net Transport %d.%c.%c",
|
||||
charToInt( id[3] ) * 10 + charToInt( id[4] ),
|
||||
id[5], id[6] );
|
||||
}
|
||||
else if( !memcmp( &id[1], "LW", 2 ) )
|
||||
{
|
||||
tr_asprintf( &ret, "LimeWire" );
|
||||
|
||||
Reference in New Issue
Block a user