A clone of btpd with my configuration changes.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. btpd 0.16:
  2. ----------
  3. Misc:
  4. - Added "start all" (start -a) command.
  5. - Allow adding multiple torrents at once.
  6. - Custom list formatting options.
  7. - Man pages for btpd, btcli, and btinfo.
  8. Bug fixes:
  9. - Handle .torrent files larger than 2MB.
  10. - http parsing and addrinfo freeing fixes.
  11. btpd 0.15:
  12. ----------
  13. Bug fixes:
  14. - The event loop could busy loop for up to a millisecond sometimes.
  15. - On some platforms btpd couldn't initiate connections to other peers.
  16. - The timer code was broken on MacOS X.
  17. btpd 0.14:
  18. ----------
  19. Misc:
  20. - IPv6 support.
  21. - Bans peers with bad data.
  22. - Better tracker compatability and more reliable tracker communication.
  23. - Show tracker counts in btcli stat.
  24. - Compiles on Solaris 10.
  25. - Btpd will now signal startup failures via the process exit value and
  26. print the failure reason to stdout.
  27. - Better shutdown and torrent stop behaviour.
  28. - Needs pthreads again.
  29. - Removed libevent in favour of own event loop code.
  30. Bug fixes:
  31. - An integer array was misaligned, which could cause crashes on systems
  32. with alignment requirements. E.g., on XScale arm.
  33. - An error in the torrent parsing code could cause crashes.
  34. - The '--topdir' option to btcli add didn't work properly for single file
  35. torrents.
  36. - The system name lookup scheme is now used. In btpd 0.13 only dns lookups
  37. were performed.
  38. btpd 0.13:
  39. ----------
  40. Misc:
  41. - cURL is no longer required. btpd now uses its own http client.
  42. - btpd doesn't use threads anymore, so pthreads are not required.
  43. - Needed parts of libevent are now included in btpd.
  44. - I/O errors for torrents no longer make btpd shut down. Instead the
  45. problematic torrent is stopped.
  46. - Added the option '--ip' to specify the ip address btpd will report
  47. to trackers.
  48. - Resume file format changed. Already added torrents will be retested once.
  49. - The torrent info (ratio etc.) are now saved regularly.
  50. - Reduced the amount of outgoing data kept in memory.
  51. btpd 0.12:
  52. ----------
  53. Misc:
  54. - btpd now starts with the same set of active torrents as it had when it was
  55. last shut down. The new '--empty-start' option disables this feature.
  56. - btpd now supports the key tracker extension.
  57. - btpd now supports the multi tracker extension.
  58. - btcli list and stat print headers for the presented data. Both commands
  59. displays more data than before.
  60. - Torrent management has changed, with changes to the add and del commands
  61. and two new commands, start and stop, as a result. Operation on torrents
  62. can now be done by number as well as torrent file.
  63. - A small delay has been added for contacting the same announce URL.
  64. - btpd sends keepalive messages.
  65. - The number of have messages sent has been reduced by not sending them to
  66. peers that already have the piece.
  67. - The structure of the torrents directory in the btpd directory has changed.
  68. It is best to remove it before running btpd 0.12.
  69. Bug fixes:
  70. - Zero sized files in a torrent were not always created.
  71. btpd 0.11:
  72. ----------
  73. Bug fixes:
  74. - A file descriptor was closed too early, which could cause btpd to exit
  75. with an error message on systems using epoll.
  76. btpd 0.10:
  77. ----------
  78. Misc:
  79. - The protection mode of the ipc socket can now be specified via the new
  80. "--ipcprot" option for btpd.
  81. Bug fixes:
  82. - The pid file is now written correctly.
  83. - btpd's "-d" option now works for relative paths too.
  84. - Add a time out for handshake completion. Prevously btpd could slowly
  85. fill with unused incoming connections.
  86. btpd 0.9:
  87. ---------
  88. Misc:
  89. - Small changes to 'btcli stat' output.
  90. Bug fixes:
  91. - Use correct value for '--prealloc' default.
  92. - Stopped torrents now show correct rates (0kB/s).
  93. - The test of content that has been modified between runs was broken.
  94. btpd 0.8:
  95. ---------
  96. Misc:
  97. - btpd now requires pthreads.
  98. - btpd keeps its logs and other information it needs in its own directory.
  99. $HOME/.btpd is the default location.
  100. - Various changes in btpd options ant btcli use. See '--help'.
  101. - The user chooses where to place content for each torrent.
  102. - Better disk IO performance.
  103. - Configureable disk preallocation to reduce file fragmentation.
  104. - The unchoke algorithm is global instead of per torrent. The number
  105. of peers to upload to is configurable.
  106. - Tracker errors are displayed in 'btcli stat' and most importantly don't
  107. make torrents unload on startup.
  108. - The rates displayed by btcli are now computed in btpd and are averaged
  109. over the last 20 seconds.
  110. - btpd now compares size and mtime of content to see if the resume file is
  111. valid.
  112. Bug fixes:
  113. - Double uninterest messages could be sent to some peers in endgame mode.
  114. - A function was called prematurely which could trigger an assert in rare
  115. cases.
  116. btpd 0.7:
  117. ---------
  118. Bug fixes:
  119. - Some communication stupidities was fixed, resulting in better download
  120. performance.
  121. btpd 0.6:
  122. ---------
  123. Misc:
  124. - Set an upper limit on how much data a peer can request at once.
  125. This protects from running out of memory because of a greedy peer.
  126. - End game is more efficient and uses much less memory.
  127. btpd 0.5:
  128. ---------
  129. Bug fixes:
  130. - The bitfield could be sent too late. This could cause the receiving
  131. peer to close the connection.
  132. btpd 0.4:
  133. ---------
  134. Misc:
  135. - The 0.1 rate limiter is back. It runs at a configurable hz now.
  136. - Added "--bw-hz" option to btpd.
  137. - Multiple have messages can be sent in place of a bitfield.
  138. - If btpd can't write to a peer for 60s, it will be disconnected.
  139. Bug fixes:
  140. - A calculation error made btpd buggy with small torrents.
  141. This caused strange crashes and many reports on bad hashes in the log.
  142. - The bitfield was sent too early. A peer could miss pieces btpd got
  143. while the peer was in handshake.
  144. - Some situations in end game or with bad hashes could cause a crash.
  145. btpd 0.3:
  146. ---------
  147. Misc:
  148. - New download strategy.
  149. - Pipe ten requests instead of five.
  150. - "-d" option added to btpd.
  151. - "--with-warn" option added to configure. The default is now
  152. to compile with warnings off.
  153. Bug fixes:
  154. - It was possible for blocks to remain marked as busy when a peer
  155. choked or was lost, causing a piece download to wait until end game.
  156. - The peer wanted level could get too high during end game.
  157. btpd 0.2:
  158. ---------
  159. Misc:
  160. - A new way to do rate limiting.
  161. - Compact mode is now used when talking to the tracker.
  162. Bug fixes:
  163. - A buffer was too small by four bytes, causing a buffer overflow
  164. on the heap in certain conditions.
  165. - An iteration over a list was unsafe and could cause a crash.
  166. - Unloading a torrent didn't kill peers in handshake for that torrent,
  167. and a crash was possible when the handshake finished.
  168. - The counter for uploaded data was updated too early.
  169. - Fixed illegal operator for test(1) in configure.