From c00208a8f6f4273af746cafaa8ecc0668cca1f24 Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Mon, 21 May 2007 15:02:11 +0000 Subject: [PATCH] add Blizzard Downloader to clients (still need to figure out the exact way version is shown) --- libtransmission/clients.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libtransmission/clients.c b/libtransmission/clients.c index 8ca0b086c..775318ae3 100644 --- a/libtransmission/clients.c +++ b/libtransmission/clients.c @@ -339,6 +339,10 @@ char * tr_clientForId( uint8_t * id ) asprintf( &ret, "BTQueue %d.%d.%d", charToInt( id[1] ), charToInt( id[2] ), charToInt( id[3] ) ); } + else if( !memcmp( id, "BLZ", 3 ) ) /* 07 is 1.7, check later to find out how version is encoded */ + { + asprintf( &ret, "Blizzard Downloader (%d%d)", id[3], id[4] ); + } else if( !memcmp( id, "LIME", 4 ) ) { asprintf( &ret, "Limewire" );