A clone of btpd with my configuration changes.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

161 líneas
5.1 KiB

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