add limewire client id

This commit is contained in:
Mitchell Livingston 2006-12-17 22:11:02 +00:00
parent 4b44da5a8c
commit ae94e3c275
1 changed files with 4 additions and 0 deletions

View File

@ -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 )
{