add Net Transport to clients list
This commit is contained in:
parent
b353ae4b43
commit
aaf8fdf45e
|
@ -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" );
|
||||
|
|
Loading…
Reference in New Issue