~ubuntu-branches/ubuntu/oneiric/libtorrent/oneiric

« back to all changes in this revision

Viewing changes to src/torrent/peer/client_list.cc

  • Committer: Bazaar Package Importer
  • Author(s): Jose Luis Rivas
  • Date: 2007-12-16 19:09:02 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20071216190902-rsyimwm1e7518aqb
Tags: 0.11.9-1
* New upstream version.
* debian/rules:
 + Removed `-03` flag, CDBS automatically replaces it with `-02`,
 the memory leak issue was fixed in 0.11.x versions.
 + Added the exclusion of the doc `NEWS` since there's nothing useful
 inside. (Closes: #444120)
 + Added `-fno-strict-aliasing` compilation option because of issue
 with gcc-4.2.0 that produces segfault. (Closes: #446988)
* debian/patches/update-changelog.patch:
 + Updated with the new changelog.
* debian/control:
 + Updated to Standards-Version 3.7.3, no modifications needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
  // Sorted by popularity to optimize search. This list is heavily
55
55
  // biased by my own prejudices, and not at all based on facts.
56
56
 
57
 
  // First patch of clients.
 
57
  // First batch of clients.
58
58
  insert_helper(ClientInfo::TYPE_AZUREUS, "AZ", NULL, NULL, "Azureus");
59
59
  insert_helper(ClientInfo::TYPE_AZUREUS, "BC", NULL, NULL, "BitComet");
60
60
  insert_helper(ClientInfo::TYPE_AZUREUS, "CD", NULL, NULL, "Enhanced CTorrent");
67
67
 
68
68
  insert_helper(ClientInfo::TYPE_COMPACT, "T", NULL, NULL, "BitTornado");
69
69
 
70
 
  // Second patch of clients.
 
70
  // Second batch of clients.
71
71
  insert_helper(ClientInfo::TYPE_AZUREUS, "AR", NULL, NULL, "Arctic");
72
72
  insert_helper(ClientInfo::TYPE_AZUREUS, "BB", NULL, NULL, "BitBuddy");
73
73
  insert_helper(ClientInfo::TYPE_AZUREUS, "BX", NULL, NULL, "Bittorrent X");
94
94
  insert_helper(ClientInfo::TYPE_COMPACT, "U", NULL, NULL, "UPnP NAT BitTorrent");
95
95
  insert_helper(ClientInfo::TYPE_COMPACT, "O", NULL, NULL, "Osprey Permaseed");
96
96
 
97
 
  // Third patch of clients.
 
97
  // Third batch of clients.
98
98
  insert_helper(ClientInfo::TYPE_AZUREUS, "AX", NULL, NULL, "BitPump");
99
99
  insert_helper(ClientInfo::TYPE_AZUREUS, "BF", NULL, NULL, "BitFlu");
100
100
  insert_helper(ClientInfo::TYPE_AZUREUS, "BG", NULL, NULL, "BTG");
103
103
  insert_helper(ClientInfo::TYPE_AZUREUS, "HL", NULL, NULL, "Halite");
104
104
  insert_helper(ClientInfo::TYPE_AZUREUS, "qB", NULL, NULL, "qBittorrent");
105
105
  insert_helper(ClientInfo::TYPE_AZUREUS, "UL", NULL, NULL, "uLeecher!");
 
106
  insert_helper(ClientInfo::TYPE_AZUREUS, "XL", NULL, NULL, "XeiLun");
106
107
 
107
108
  insert_helper(ClientInfo::TYPE_COMPACT, "R", NULL, NULL, "Tribler");
108
109
}