1 | /****************************************************************************** |
---|
2 | * $Id: clients.c 861 2006-09-12 01:38:57Z livings124 $ |
---|
3 | * |
---|
4 | * Copyright (c) 2005 Transmission authors and contributors |
---|
5 | * |
---|
6 | * Permission is hereby granted, free of charge, to any person obtaining a |
---|
7 | * copy of this software and associated documentation files (the "Software"), |
---|
8 | * to deal in the Software without restriction, including without limitation |
---|
9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
---|
10 | * and/or sell copies of the Software, and to permit persons to whom the |
---|
11 | * Software is furnished to do so, subject to the following conditions: |
---|
12 | * |
---|
13 | * The above copyright notice and this permission notice shall be included in |
---|
14 | * all copies or substantial portions of the Software. |
---|
15 | * |
---|
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
---|
21 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
---|
22 | * DEALINGS IN THE SOFTWARE. |
---|
23 | *****************************************************************************/ |
---|
24 | |
---|
25 | #include "transmission.h" |
---|
26 | |
---|
27 | char * tr_clientForId( uint8_t * id ) |
---|
28 | { |
---|
29 | char * ret = NULL; |
---|
30 | |
---|
31 | if( id[0] == '-' && id[7] == '-' ) |
---|
32 | { |
---|
33 | if( !memcmp( &id[1], "TR", 2 ) ) |
---|
34 | { |
---|
35 | asprintf( &ret, "Transmission %d.%d", |
---|
36 | ( id[3] - '0' ) * 10 + ( id[4] - '0' ), |
---|
37 | ( id[5] - '0' ) * 10 + ( id[6] - '0' ) ); |
---|
38 | } |
---|
39 | else if( !memcmp( &id[1], "AZ", 2 ) ) |
---|
40 | { |
---|
41 | asprintf( &ret, "Azureus %c.%c.%c.%c", |
---|
42 | id[3], id[4], id[5], id[6] ); |
---|
43 | } |
---|
44 | else if( !memcmp( &id[1], "TS", 2 ) ) |
---|
45 | { |
---|
46 | asprintf( &ret, "TorrentStorm (%c%c%c%c)", |
---|
47 | id[3], id[4], id[5], id[6] ); |
---|
48 | } |
---|
49 | else if( !memcmp( &id[1], "BC", 2 ) ) |
---|
50 | { |
---|
51 | asprintf( &ret, "BitComet %d.%c%c", |
---|
52 | ( id[3] - '0' ) * 10 + ( id[4] - '0' ), |
---|
53 | id[5], id[6] ); |
---|
54 | } |
---|
55 | else if( !memcmp( &id[1], "SZ", 2 ) ) |
---|
56 | { |
---|
57 | asprintf( &ret, "Shareaza %c.%c.%c.%c", |
---|
58 | id[3], id[4], id[5], id[6] ); |
---|
59 | } |
---|
60 | else if( !memcmp( &id[1], "UT", 2 ) ) |
---|
61 | { |
---|
62 | asprintf( &ret, "\xc2\xb5Torrent %c.%d", id[3], |
---|
63 | ( id[4] - '0' ) * 10 + ( id[5] - '0' ) ); |
---|
64 | } |
---|
65 | else if( !memcmp( &id[1], "BOW", 3 ) ) |
---|
66 | { |
---|
67 | asprintf( &ret, "Bits on Wheels (%c%c)", |
---|
68 | id[5], id[6] ); |
---|
69 | } |
---|
70 | else if( !memcmp( &id[1], "BR", 2 ) ) |
---|
71 | { |
---|
72 | asprintf( &ret, "BitRocket %c.%c (%d)", |
---|
73 | id[3], id[4], ( id[5] - '0' ) * 10 + ( id[6] - '0' ) ); |
---|
74 | } |
---|
75 | } |
---|
76 | else if( !memcmp( &id[4], "----", 4 ) ) |
---|
77 | { |
---|
78 | if( id[0] == 'T' ) |
---|
79 | { |
---|
80 | asprintf( &ret, "BitTornado (%c%c%c)", id[1], id[2], id[3] ); |
---|
81 | } |
---|
82 | else if( id[0] == 'A' ) |
---|
83 | { |
---|
84 | asprintf( &ret, "ABC (%c%c%c)", id[1], id[2], id[3] ); |
---|
85 | } |
---|
86 | } |
---|
87 | else if( id[0] == 'M' && id[2] == '-' && |
---|
88 | id[4] == '-' && id[6] == '-' && |
---|
89 | id[7] == '-' ) |
---|
90 | { |
---|
91 | asprintf( &ret, "BitTorrent %c.%c.%c", id[1], id[3], id[5] ); |
---|
92 | } |
---|
93 | |
---|
94 | else if( id[0] == 'M' && id[2] == '-' && |
---|
95 | id[5] == '-' && id[7] == '-' ) |
---|
96 | { |
---|
97 | asprintf( &ret, "BitTorrent %c.%c%c.%c", id[1], id[3], id[4], id[6] ); |
---|
98 | } |
---|
99 | else if( !memcmp( id, "exbc", 4 ) ) |
---|
100 | { |
---|
101 | asprintf( &ret, "BitComet %d.%02d", id[4], id[5] ); |
---|
102 | } |
---|
103 | else if( !memcmp( id, "OP", 2 ) ) |
---|
104 | { |
---|
105 | asprintf( &ret, "Opera (%c%c%c)", id[2], id[3], id[4], id[5] ); |
---|
106 | } |
---|
107 | |
---|
108 | if( !ret ) |
---|
109 | { |
---|
110 | if (id[0] != 0) |
---|
111 | { |
---|
112 | asprintf( &ret, "unknown client (%c%c%c%c%c%c%c%c)", |
---|
113 | id[0], id[1], id[2], id[3], id[4], id[5], id[6], id[7] ); |
---|
114 | } |
---|
115 | else |
---|
116 | { |
---|
117 | asprintf( &ret, "unknown client" ); |
---|
118 | } |
---|
119 | } |
---|
120 | |
---|
121 | return ret; |
---|
122 | } |
---|