transmission/libtransmission
Charles Kerr 1b527610dd (trunk libT) yet another step in the debugging cycle, crash report from ZogG and Rolcol 2009-01-05 07:57:10 +00:00
..
ConvertUTF.c
ConvertUTF.h (libT) add the #include guards to "private" third party header files. 2008-11-30 01:43:18 +00:00
JSON_parser.c
JSON_parser.h (libT) add the #include guards to "private" third party header files. 2008-11-30 01:43:18 +00:00
Makefile.am (trunk libT) new peer request fifo queue with log(N) search time. new unit tests for the queue. new utility tr_lowerBound() 2009-01-04 16:29:44 +00:00
bandwidth.c (trunk libT) fix the much-hated "Assertion failed: (tr_isPeerIo( io ))". Also, repeated calls to tr_date() were taking up about 78% of the time in tr_stat(), so instead of calling multiple times, call it once in tr_stat() and pass that value around to the functions that need it. 2009-01-05 04:27:54 +00:00
bandwidth.h (trunk libT) fix the much-hated "Assertion failed: (tr_isPeerIo( io ))". Also, repeated calls to tr_date() were taking up about 78% of the time in tr_stat(), so instead of calling multiple times, call it once in tr_stat() and pass that value around to the functions that need it. 2009-01-05 04:27:54 +00:00
bencode-test.c (trunk libT) have tr_bencSaveAsJSON() use an evbuffer 2008-12-30 22:07:39 +00:00
bencode.c (trunk libT) inline the tr_bencIs*() utility functions 2009-01-03 00:11:31 +00:00
bencode.h (trunk libT) inline the tr_bencIs*() utility functions 2009-01-03 00:11:31 +00:00
blocklist-test.c (libT) re-apply jhujhiti's IPv6 patch. This merges in my tr_port cleanup, so any new bugs are mine :/ 2008-12-02 03:41:58 +00:00
blocklist.c (trunk libT) Fix sparse warnings: symbol 'XXX' shadows an earlier one 2009-01-01 18:38:49 +00:00
blocklist.h updated email address 2008-12-16 00:20:44 +00:00
clients-test.c
clients.c (trunk libT) have a pool of reusable evbuffers 2008-12-30 20:32:00 +00:00
clients.h
completion.c (trunk libT) avoid some unnecessary memory fragmentation... for composited objects that have a tr_completion, contain the it directly rather than a pointer to one allocated elsewhere on the heap. 2009-01-02 17:01:55 +00:00
completion.h (trunk libT) avoid some unnecessary memory fragmentation... for composited objects that have a tr_completion, contain the it directly rather than a pointer to one allocated elsewhere on the heap. 2009-01-02 17:01:55 +00:00
crypto.c (trunk libT) make the tr_bandwidth macros into safer inline funcs. inline utils' one-liners. 2009-01-02 20:12:23 +00:00
crypto.h updated email address 2008-12-16 00:20:44 +00:00
fastresume.c (trunk libT) avoid some unnecessary memory fragmentation... for composited objects that have a tr_completion, contain the it directly rather than a pointer to one allocated elsewhere on the heap. 2009-01-02 17:01:55 +00:00
fastresume.h (libT) add #ifdefs to ensure that client apps don't #include private libtransmission headers. 2008-11-24 20:17:36 +00:00
fdlimit.c (trunk libT) eliminate a couple more unnecessary malloc() + free() pairs 2008-12-30 03:29:09 +00:00
fdlimit.h (trunk libT) remove unnecessary prototype 2009-01-04 04:37:47 +00:00
ggets.c
ggets.h (libT) add the #include guards to "private" third party header files. 2008-11-30 01:43:18 +00:00
handshake.c (trunk libT) probably fix r7618 reported in #transmission by Rolcol 2009-01-05 06:45:08 +00:00
handshake.h (trunk libT) minor cleanups found while diffing for backport to 1.4x in r7455 2008-12-22 00:52:44 +00:00
inout.c (trunk libT) improve piece verification speed by providing a larger buffer, and add a mechanism to reuse it when verifying an entire torrent at once. 2008-12-31 18:08:13 +00:00
inout.h (trunk libT) improve piece verification speed by providing a larger buffer, and add a mechanism to reuse it when verifying an entire torrent at once. 2008-12-31 18:08:13 +00:00
json-test.c (trunk libT) fix a couple of minor memory leaks 2008-12-30 22:19:52 +00:00
json.c (trunk libT) avoid some unnecessary memory fragmentation... for composited objects that have a tr_ptrArray, contain the tr_ptrArray directly rather than a pointer to one allocated elsewhere on the heap. 2008-12-29 08:54:36 +00:00
json.h updated email address 2008-12-16 00:20:44 +00:00
list.c (trunk libT) recycle the tr_list nodes when possible 2008-12-29 17:28:14 +00:00
list.h (trunk libT) speed improvments from wereHamster 2008-12-22 19:16:06 +00:00
makemeta.c (trunk libT) Fix sparse warnings: symbol 'XXX' shadows an earlier one 2009-01-01 18:38:49 +00:00
makemeta.h updated email address 2008-12-16 00:20:44 +00:00
metainfo.c only increment the tier count for valid tiers 2009-01-03 21:27:48 +00:00
metainfo.h (trunk libT) more semantic cleanup: tr_handle->tr_session, int->tr_bool, int->tr_port 2008-12-14 11:21:11 +00:00
natpmp.c (trunk libT) Fix sparse warnings: symbol 'XXX' shadows an earlier one 2009-01-01 18:38:49 +00:00
natpmp.h updated email address 2008-12-16 00:20:44 +00:00
net.c (trunk libT) use IN_MULTICAST macro 2009-01-02 21:45:55 +00:00
net.h * add autoconf test AC_C_INLINE to do the Right Thing for "inline", "__inline__", and "__inline". 2009-01-02 05:11:50 +00:00
peer-common.h (trunk libT) minor cleanups found while diffing for backport to 1.4x in r7455 2008-12-22 00:52:44 +00:00
peer-io.c (trunk libT) fix the much-hated "Assertion failed: (tr_isPeerIo( io ))". Also, repeated calls to tr_date() were taking up about 78% of the time in tr_stat(), so instead of calling multiple times, call it once in tr_stat() and pass that value around to the functions that need it. 2009-01-05 04:27:54 +00:00
peer-io.h (trunk libT) fix the much-hated "Assertion failed: (tr_isPeerIo( io ))". Also, repeated calls to tr_date() were taking up about 78% of the time in tr_stat(), so instead of calling multiple times, call it once in tr_stat() and pass that value around to the functions that need it. 2009-01-05 04:27:54 +00:00
peer-mgr-private.h (trunk libT) fix the much-hated "Assertion failed: (tr_isPeerIo( io ))". Also, repeated calls to tr_date() were taking up about 78% of the time in tr_stat(), so instead of calling multiple times, call it once in tr_stat() and pass that value around to the functions that need it. 2009-01-05 04:27:54 +00:00
peer-mgr.c (trunk libT) yet another step in the debugging cycle, crash report from ZogG and Rolcol 2009-01-05 07:57:10 +00:00
peer-mgr.h updated email address 2008-12-16 00:20:44 +00:00
peer-msgs-test.c (libT) #1549: support fast exensions' "reject" and "have all/none" messages 2008-12-02 17:10:54 +00:00
peer-msgs.c (trunk libT) fix the much-hated "Assertion failed: (tr_isPeerIo( io ))". Also, repeated calls to tr_date() were taking up about 78% of the time in tr_stat(), so instead of calling multiple times, call it once in tr_stat() and pass that value around to the functions that need it. 2009-01-05 04:27:54 +00:00
peer-msgs.h (trunk libT) inline parts of peer-io and bandwidth, too 2009-01-02 17:46:22 +00:00
platform.c (trunk libT) #include "session.h" cleanup from wereHamster 2008-12-23 17:27:15 +00:00
platform.h (trunk libT) eliminate a couple more unnecessary malloc() + free() pairs 2008-12-30 03:29:09 +00:00
port-forwarding.c (trunk libT) #include "session.h" cleanup from wereHamster 2008-12-23 17:27:15 +00:00
port-forwarding.h (trunk libT) fix type error reported by JhuJhiti 2008-12-14 22:48:11 +00:00
ptrarray.c (trunk libT) inline the ptrarray one-liners 2009-01-02 20:19:10 +00:00
ptrarray.h (trunk libT) minor tr_ptrArray API cleanup 2009-01-04 16:59:15 +00:00
publish.c (trunk libT) avoid some unnecessary memory fragmentation... for composited objects that have a tr_publisher, contain the it directly rather than a pointer to one allocated elsewhere on the heap. 2008-12-29 18:10:07 +00:00
publish.h (trunk libT) avoid some unnecessary memory fragmentation... for composited objects that have a tr_publisher, contain the it directly rather than a pointer to one allocated elsewhere on the heap. 2008-12-29 18:10:07 +00:00
ratecontrol.c (trunk libT) fix the much-hated "Assertion failed: (tr_isPeerIo( io ))". Also, repeated calls to tr_date() were taking up about 78% of the time in tr_stat(), so instead of calling multiple times, call it once in tr_stat() and pass that value around to the functions that need it. 2009-01-05 04:27:54 +00:00
ratecontrol.h (trunk libT) fix the much-hated "Assertion failed: (tr_isPeerIo( io ))". Also, repeated calls to tr_date() were taking up about 78% of the time in tr_stat(), so instead of calling multiple times, call it once in tr_stat() and pass that value around to the functions that need it. 2009-01-05 04:27:54 +00:00
request-list-test.c (trunk libT) remove a small memory leak in the request-list unit test s.t. valgrind will be happy 2009-01-04 17:46:27 +00:00
request-list.c (trunk libT) minor speedup tweaks in peer-request hotspots 2009-01-04 18:01:15 +00:00
request-list.h (trunk libT) new peer request fifo queue with log(N) search time. new unit tests for the queue. new utility tr_lowerBound() 2009-01-04 16:29:44 +00:00
resume.c (trunk libT) avoid some unnecessary memory fragmentation... for composited objects that have a tr_completion, contain the it directly rather than a pointer to one allocated elsewhere on the heap. 2009-01-02 17:01:55 +00:00
resume.h updated email address 2008-12-16 00:20:44 +00:00
rpc-server.c (trunk libT) have tr_bencSaveAsJSON() use an evbuffer 2008-12-30 22:07:39 +00:00
rpc-server.h updated email address 2008-12-16 00:20:44 +00:00
rpc-test.c
rpcimpl.c (trunk libT) Fix sparse warnings: symbol 'XXX' shadows an earlier one 2009-01-01 18:38:49 +00:00
rpcimpl.h (trunk libT) have tr_bencSaveAsJSON() use an evbuffer 2008-12-30 22:07:39 +00:00
session.c (trunk libT) fix the much-hated "Assertion failed: (tr_isPeerIo( io ))". Also, repeated calls to tr_date() were taking up about 78% of the time in tr_stat(), so instead of calling multiple times, call it once in tr_stat() and pass that value around to the functions that need it. 2009-01-05 04:27:54 +00:00
session.h (trunk) patch from wereHamster to finish off tr_handle 2008-12-22 19:14:43 +00:00
stats.c (trunk libT) #include "session.h" cleanup from wereHamster 2008-12-23 17:27:15 +00:00
stats.h updated email address 2008-12-16 00:20:44 +00:00
test-peer-id.c (trunk libT) #include "session.h" cleanup from wereHamster 2008-12-23 17:27:15 +00:00
torrent-ctor.c updated email address 2008-12-16 00:20:44 +00:00
torrent.c (trunk libT) fix the much-hated "Assertion failed: (tr_isPeerIo( io ))". Also, repeated calls to tr_date() were taking up about 78% of the time in tr_stat(), so instead of calling multiple times, call it once in tr_stat() and pass that value around to the functions that need it. 2009-01-05 04:27:54 +00:00
torrent.h (trunk libT) inline a few more torrent methods 2009-01-03 00:25:27 +00:00
tr-getopt.c updated email address 2008-12-16 00:20:44 +00:00
tr-getopt.h updated email address 2008-12-16 00:20:44 +00:00
tracker.c (trunk libT) do scrape paused torrents. 2009-01-04 02:05:17 +00:00
tracker.h (trunk libT) tr_torrentStat() speedups 2009-01-03 23:11:29 +00:00
transmission.h (trunk libT) avoid some unnecessary memory fragmentation... for composited objects that have a tr_bandwidth, contain the it directly rather than a pointer to one allocated elsewhere on the heap. 2009-01-02 19:56:06 +00:00
trevent.c (trunk libT) minor cleanup: use symbolic name instead of magic numbers; use tr_bool instead of int 2008-12-30 02:43:51 +00:00
trevent.h (trunk libT) minor cleanup: use symbolic name instead of magic numbers; use tr_bool instead of int 2008-12-30 02:43:51 +00:00
upnp.c updated email address 2008-12-16 00:20:44 +00:00
upnp.h updated email address 2008-12-16 00:20:44 +00:00
utils-test.c (libT) fix a tr_buildPath() bug reported by pea_ 2008-10-30 19:47:00 +00:00
utils.c (trunk libT) minor speedup tweaks in peer-request hotspots 2009-01-04 18:01:15 +00:00
utils.h (trunk libT) new peer request fifo queue with log(N) search time. new unit tests for the queue. new utility tr_lowerBound() 2009-01-04 16:29:44 +00:00
verify.c (trunk libT) avoid some unnecessary memory fragmentation... for composited objects that have a tr_completion, contain the it directly rather than a pointer to one allocated elsewhere on the heap. 2009-01-02 17:01:55 +00:00
verify.h updated email address 2008-12-16 00:20:44 +00:00
web.c (trunk libT) this diff has held #1631 at bay for 18 hours now... is it finally fixed? :) 2008-12-31 14:28:20 +00:00
web.h updated email address 2008-12-16 00:20:44 +00:00
webseed.c (trunk libT) fix the much-hated "Assertion failed: (tr_isPeerIo( io ))". Also, repeated calls to tr_date() were taking up about 78% of the time in tr_stat(), so instead of calling multiple times, call it once in tr_stat() and pass that value around to the functions that need it. 2009-01-05 04:27:54 +00:00
webseed.h (trunk libT) fix the much-hated "Assertion failed: (tr_isPeerIo( io ))". Also, repeated calls to tr_date() were taking up about 78% of the time in tr_stat(), so instead of calling multiple times, call it once in tr_stat() and pass that value around to the functions that need it. 2009-01-05 04:27:54 +00:00
wildmat.c