add bitlet to client id's

This commit is contained in:
Mitchell Livingston 2007-09-30 13:16:18 +00:00
parent 5fa0740c27
commit 3e87e07e0c
1 changed files with 5 additions and 1 deletions

View File

@ -228,7 +228,7 @@ char * tr_clientForId( const uint8_t * id )
}
else if( !memcmp( &id[1], "GR", 2 ) )
{
asprintf( &ret, "GetRight (%c.%c.%c.%c)",
asprintf( &ret, "GetRight %c.%c.%c.%c",
id[3], id[4], id[5], id[6] );
}
else if( !memcmp( &id[1], "PD", 2 ) )
@ -236,6 +236,10 @@ char * tr_clientForId( const uint8_t * id )
asprintf( &ret, "Pando %c.%c.%c.%c",
id[3], id[4], id[5], id[6] );
}
else if( !memcmp( &id[1], "WT-", 3 ) )
{
asprintf( &ret, "BitLet" );
}
if( ret )
{