transmission/libtransmission
Jordan Lee cac5c360f2 (trunk libT) #4690 "getPeerCandidates() uses more CPU than necessary" -- fixed.
Once we've scored all n candidates, we sort them by score so that we can pick out the k best candidates. If n is large, sorting them can be expensive. If we use the Selection Algorithm, we select in O(n) without having to sort.
2011-12-31 21:28:53 +00:00
..
ConvertUTF.c
ConvertUTF.h
JSON_parser.c
JSON_parser.h
Makefile.am (trunk libT) #4323 "Allow usage of system miniupnpc" -- fixed. 2011-10-09 02:05:52 +00:00
announcer-common.h
announcer-http.c (trunk libT) #4526 "do not skip scrape unless all three scrape fields came with announce" -- add field initializers. 2011-10-14 00:27:14 +00:00
announcer-udp.c (trunk libT) #4526 "do not skip scrape unless all three scrape fields came with announce" -- add field initializers. 2011-10-14 00:27:14 +00:00
announcer.c (trunk libT) #4526 "do not skip scrape unless all three scrape fields came with announce" -- add field initializers. 2011-10-14 00:27:14 +00:00
announcer.h
bandwidth.c (trunk libT) bandwidth.c: minor phaseOne() improvements suggested by livings 2011-10-25 21:54:51 +00:00
bandwidth.h (trunk libT) add a unique key to each tr_bandwidth object, so that when sorting them arbitrarily we can use that key rather than their pointer address. Apparently comparing pointers that aren't allocated in the same array is undefined behavior. 2011-06-19 18:34:10 +00:00
bencode-test.c (trunk libT) fix a minor memory leak in the bencode regression tests. 2011-12-14 05:44:15 +00:00
bencode.c (trunk libT) #4284 "crash via webfrontend or transmission-remote" -- use patch from jerwied 2011-05-27 23:28:40 +00:00
bencode.h
bitfield.c #4506 'crash from memory corruption somewhere called from tr_handshakeDone()' -- possible fix. 2011-09-28 16:07:35 +00:00
bitfield.h (trunk libt) in tr_bitfieldSetRaw(), add a `bounded' argument for cases where we know how large the final bitfield will be. This can be used ensure that the excess bits at the end of the array are zeroed out and safe for bitfield.c's countArray() function. 2011-09-26 22:50:42 +00:00
blocklist-test.c
blocklist.c
blocklist.h
cache.c remove dead code 2011-08-08 16:58:29 +00:00
cache.h
clients-test.c
clients.c whoops typo 2011-11-22 03:30:37 +00:00
clients.h
completion.c (trunk libT) #4684 "tr_cpSizeWhenDone() is slow for huge torrents that we're only partially downloading" -- fixed. 2011-12-22 19:35:13 +00:00
completion.h (trunk libT) add several more tr_completion assertions to smoke out the (sizeWhenDone() < sizeNow()) error reported in the forums 2011-09-26 06:18:48 +00:00
crypto.c (trunk libT) #4473 'underflow from malformed ssha1 can crash tr_ssha1_matches()' -- bah, fix oops in r12884. 2011-09-16 22:55:58 +00:00
crypto.h
fdlimit.c (trunk libT) fix warnings in fileset_get_empty_slot() found by llvm's static-build analyzer. 2011-12-14 05:42:15 +00:00
fdlimit.h (trunk libt) #4305 "New Torrent via RPC Error:No data found when subfolder does not exist" -- revert r12076 s.t. parent directories are created as necessary when saving local data to disk. 2011-07-25 17:48:14 +00:00
handshake.c
handshake.h
history-test.c
history.c
history.h
inout.c (trunk libt) #4305 "New Torrent via RPC Error:No data found when subfolder does not exist" -- revert r12076 s.t. parent directories are created as necessary when saving local data to disk. 2011-07-25 17:48:14 +00:00
inout.h (trunk libT) minor #include cleanups 2011-07-13 03:23:37 +00:00
json-test.c
json.c
json.h
libt.dox
list.c
list.h
magnet-test.c
magnet.c (trunk libT) #4504 "crash when adding malformed magnet link" -- fixed. 2011-09-25 21:51:50 +00:00
magnet.h
makemeta.c (trunk libT) #4383 "transmission-create bug when using leading ./" -- fixed. 2011-07-24 20:18:33 +00:00
makemeta.h
metainfo.c (trunk libT) #4437 "Multi file webseeds don't work" -- handle multifile torrents with web seed urls that incorrectly don't end with a slash. 2011-09-06 16:45:48 +00:00
metainfo.h
natpmp.c
natpmp.h
net.c (trunk) #4490 "Transmission 2.40b1 fails to build: undefined references" -- fixed. 2011-10-08 23:53:27 +00:00
net.h
peer-common.h
peer-io.c (trunk) #4490 "Transmission 2.40b1 fails to build: undefined references" -- fixed. 2011-10-08 23:53:27 +00:00
peer-io.h
peer-mgr.c (trunk libT) #4690 "getPeerCandidates() uses more CPU than necessary" -- fixed. 2011-12-31 21:28:53 +00:00
peer-mgr.h (trunk libT) #4338 "improved webseed support" -- patch by alexat 2011-07-10 15:24:51 +00:00
peer-msgs-test.c
peer-msgs.c (trunk libt) in tr_bitfieldSetRaw(), add a `bounded' argument for cases where we know how large the final bitfield will be. This can be used ensure that the excess bits at the end of the array are zeroed out and safe for bitfield.c's countArray() function. 2011-09-26 22:50:42 +00:00
peer-msgs.h
platform.c #4422 On Mac, tr_getWebClientDir() uses incorrect encoding for creating the web content dir path 2011-08-15 00:10:06 +00:00
platform.h utils.h's public function tr_realpath() function relies on the private constant TR_MAX_PATH. Make TR_MAX_PATH public. 2011-10-25 15:57:10 +00:00
port-forwarding.c
port-forwarding.h
ptrarray.c (trunk libT) Remove the backup implementation of tr_ptrArrayLowerBound() that was added 5 weeks ago in r12512. This was for testing in the nightlies, to use its output against the function's primary implementation. 2011-07-31 14:04:43 +00:00
ptrarray.h
resume.c (trunk libt) in tr_bitfieldSetRaw(), add a `bounded' argument for cases where we know how large the final bitfield will be. This can be used ensure that the excess bits at the end of the array are zeroed out and safe for bitfield.c's countArray() function. 2011-09-26 22:50:42 +00:00
resume.h
rpc-server.c #4524 Redirects with https are broken 2011-09-27 22:34:52 +00:00
rpc-server.h
rpc-test.c
rpcimpl.c (trunk libT) #4571 "can't edit UDP trackers via RPC" -- fixed. 2011-10-17 12:44:17 +00:00
rpcimpl.h
session.c queuing: lower the default 'active downloads' value to 5 2011-08-08 16:29:47 +00:00
session.h Add a mechanism for enabling/disabling the stalled minutes feature. This is a pre-existing feature in the Mac client. 2011-08-07 19:24:33 +00:00
stats.c
stats.h
test-peer-id.c
torrent-ctor.c
torrent-magnet.c undo r12585, where I checked in the wrong file. 2011-07-25 22:30:56 +00:00
torrent-magnet.h
torrent.c (trunk libT) #4625 "Transmission 2.42 fails to build on Solaris 10: Undefined symbol 'mkdtemp'" -- fixed. 2011-11-10 03:31:43 +00:00
torrent.h add user_data (void *) to the queue callback 2011-08-03 23:40:51 +00:00
tr-dht.c Add stub for the DHT blacklisting support. 2011-07-25 21:30:46 +00:00
tr-dht.h
tr-getopt.c
tr-getopt.h
tr-lpd.c
tr-lpd.h
tr-udp.c (trunk libT) "DHT and blocklists are incompatible" -- revert r12544. 2011-07-22 17:47:08 +00:00
tr-udp.h
tr-utp.c (trunk) #4490 "Transmission 2.40b1 fails to build: undefined references" -- fixed. 2011-10-08 23:53:27 +00:00
tr-utp.h (trunk) #4490 "Transmission 2.40b1 fails to build: undefined references" -- fixed. 2011-10-08 23:53:27 +00:00
transmission.h add an RPC session callback for when queue order changes 2011-08-27 23:54:10 +00:00
trevent.c
trevent.h
upnp.c (trunk libT) #4323 "allow usage of system miniupnpc" -- possibly fix OS X regression caused by r12957 2011-10-09 14:51:13 +00:00
upnp.h
utils-test.c
utils.c (trunk web) fix warnings in tr_urlIsValidTracker() and tr_urlIsValid() found by llvm's scan-build. 2011-12-14 05:40:21 +00:00
utils.h don't use the word 'template' as a variable name, since it's a reserved word in C++ 2011-11-12 00:16:04 +00:00
verify.c
verify.h
web.c (trunk libT) #4666 "webseed downloading never gets downloaded" -- fixed. 2011-12-14 05:58:23 +00:00
web.h (trunk libT) #4338 "improved webseed support" -- patch by alexat 2011-07-10 15:24:51 +00:00
webseed.c (trunk libT) #4644 "Transmission can't download big files from webseed." -- fix overflow error with a patch based on one from and_cesbo. (Modified by Jordan to add random bugs.) 2011-12-10 18:42:52 +00:00
webseed.h
wildmat.c